Skip to content

Latest commit

 

History

History
49 lines (35 loc) · 1.87 KB

File metadata and controls

49 lines (35 loc) · 1.87 KB

Contributing

For general contributions, please open an issue on GitHub using one of the below templates:

New Version Release Procedure

  1. Navigate to the GitHub Releases page for ChrisCarini/intellij-platform-plugin-verifier-action

  2. Click Draft a new release

  3. Enter the below information

    1. Ensure Publish this Action to the GitHub Marketplace is selected

    2. version tag: we follow the format v<version> (ie, v1.0.1)

    3. target: Likely targeting the main branch, but possible a different commit.

    4. release title: Release v<version> (ie, Release v1.0.1)

    5. description: Click the Auto-generate release notes - it makes life easier.

      Previously, we used the below template
      <SHORT_DESCRIPTION_ONE_OR_TWO_SENTENCES> 
      
      ### Added
      
      1. N/A
      
      ### Upgrade
      
      1. N/A
      
      ### Fixed
      
      1. N/A

      (Note: Update the Added, Upgrade, and Fixed sections as needed, linking to GitHub PRs/Issues when appropriate.)

  4. Click Publish Release

  5. The latest tag is automatically updated to the release commit by the Update latest tag on release workflow.

    Manual steps (for reference)
    git tag -d latest && git push origin :refs/tags/latest && git tag latest main && git push origin latest