Skip to content

Latest commit

 

History

History
44 lines (32 loc) · 1.69 KB

CONTRIBUTING.md

File metadata and controls

44 lines (32 loc) · 1.69 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. Update the latest tag to the most current release:

    git tag -d latest && git push origin :refs/tags/latest && git tag latest main && git push origin latest