For general contributions, please open an issue on GitHub using one of the below templates:
-
Navigate to the GitHub Releases page for ChrisCarini/intellij-platform-plugin-verifier-action
-
Click
Draft a new release
-
Enter the below information
-
Ensure
Publish this Action to the GitHub Marketplace
is selected -
version tag: we follow the format
v<version>
(ie,v1.0.1
) -
target: Likely targeting the
main
branch, but possible a different commit. -
release title:
Release v<version>
(ie,Release v1.0.1
) -
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
, andFixed
sections as needed, linking to GitHub PRs/Issues when appropriate.)
-
-
Click
Publish Release
-
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