NAME
    Dist::Zilla::Plugin::GitHub::CreateRelease - Create a GitHub Release

VERSION
    version 0.0007

SYNOPSIS
    In your dist.ini:

     [GitHub::CreateRelease]
     repo = github_repo_name         ; optional
     branch = main                   ; default = main
     notes_as_code = 1               ; default = 1 (true)
     notes_from = SignReleaseNotes   ; default = SignReleaseNotes
     notes_file = Release-VERSION    ; default = Release-VERSION
     github_notes = 0                ; default = 0 (false)
     draft = 0                       ; default = 0 (false)
     hash_alg = sha256               ; default = sha256
     add_checksum = 1                ; default = 1 (true)
     org_id = some_id_identifier     ; default = github (~/.github-identity or ~/.github)
     title_template = Version RELEASE - TRIAL CPAN release      ; this is the default

DESCRIPTION
    This plugin will create a GitHub Release and attach a copy of the cpan
    release archive to the Release.

    The release notes can be generated based on the notes_from value.

    This plugin should appear after any other AfterBuild plugin in your
    "dist.ini" file. If you are using SignReleaseNotes as the notes_from it
    should be after the SignReleaseNotes plugin.

Required Plugins
    This plugin requires that your Dist::Zilla configuration do the
    following:

     1. Create a release
     2. Tag the release in your git repository
     3. Push the commits (and tags) to GitHub

    There are numerous combinations of Dist::Zilla plugins that can perform
    those functions.

GITHUB API AUTHENTICATION
    This module uses Config::Identity::GitHub to access the GitHub API
    credentials.

    You need to create a file in your home directory named .github-identity.
    It requires the following fields:

     login github_username OR github_organization
     token github_....

    The GitHub API has a lot of options for the generation of Personal
    Access Tokens.

    At minimum you will need a personal access token with "Write" access to
    "Contents". It allows write access to Repository contents, commits,
    branches, downloads, releases, and merges.

    Config::Identity::GitHub supports a gpg encrypted .github-identity file.
    It is recommended that you implement encryption for the .github-identity
    file. If you have gpg configured you can encrypt the file:

     # Encrypt it to ~/.github-identity.asc
     gpg -ea -r you@example.com ~/.github-identity
     # Cat ~/.github-identity.asc to verify it is encrypted
     cat ~/.github-identity.asc
     # Verify you can decrypt the file
     gpg -d ~/.github-identity.asc
     # Replace the clear text version (uncomment next line)
     # mv ~/.github-identity.asc ~/.github-identity

  PERSONAL ACCOUNT VERSUS ORGANIZATION
    The login specified in the .github-identity file above should reference
    the personal account OR the organization that contains the repo.

    A personal access token must have the Resource owner set to the
    organization but does not require special permissions on the
    organization. It simply needs read/write on the code and read access on
    the metadata of the repository.

    As specified in the org_id attribute details below you can have separate
    identities for each repository. The org_id tells the module where to
    look for the specific identity file that contains the correct login and
    token.

ATTRIBUTES
    hash_alg
        A string value for the Digest::SHA supported hash algorithm to use
        for the hash of the cpan upload file.

    repo
        A string value that specifies the name of the github repository. The
        module determines the name based on the remote url but this setting
        can override the name that is detected.

    remote_name
        A string value that specifies the name of the git remote URL. This
        is typically origin or upstream. It is the name of the URL where you
        want to create the release.

        It defaults to origin.

    branch
        A string value that specifies the branch. It defaults to main if not
        specified.

    title_template
        A string value that specifies the format of the Title used for the
        release. If the title includes VERSION it is replaced with the
        version number of the release. If the title includes TRIAL it is
        replaced with Official or Trial depending on whether --trial was
        specified.

        The default value is "Version VERSION - TRIAL CPAN release"

    notes_as_code
        An integer value specifying true/false. If the value is true (not 0)
        the notes are surrounded by the github code markup "```" ... "```".

    github_notes
        An integer value specifying true/false. If the value is true (not 0)
        the api call instructs github to add a link to the changes in the
        release.

    notes_from
        A string value that specifies how to obtain the Notes for the
        Release. The valid values are:

        SignReleaseNotes
        ChangeLog
        FromFile
        GitHub::CreateRelease

    notes_file
        A string value specifying the name template of the notes file that
        should be read for to obtain the notes. It is used for if the
        note_from is one of:

         SignReleaseNotes
         FromFile
         ChangeLog

        The default is Release-VERSION and VERSION is replaced by the module
        version number if it exists.

    draft
        An integer value specifying true/false. If the value is true (not 0)
        the api call instructs github that the Release is a draft. You must
        publish it via the github webpage to make it active.

    org_id
        A string value that allows you to reference another identity file.
        GitHub has personal accounts and organizations. If you have
        repositories in both personal and organizations (or multiple
        organizations) this allows you to choose a specific identity for
        each repo.

        The default is github and references: ~/.github-identity or
        ~/.github.

        Specifying org_id = project in your dist.ini would reference:
        ~/.project-identity or ~/.project.

METHODS
    after_release
        The main processing function that is called automatically after the
        release is complete.

AUTHOR
      Timothy Legge <timlegge@cpan.org>

COPYRIGHT AND LICENSE
    This software is copyright (c) 2023 by Timothy Legge.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.

AUTHOR
    Timothy Legge

COPYRIGHT AND LICENSE
    This software is copyright (c) 2024 by Timothy Legge.

    This is free software; you can redistribute it and/or modify it under
    the same terms as the Perl 5 programming language system itself.