You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# When generating release notes, setting the target tag_name property to an existing tag has GitHub ignore the target_commitish property
297
-
# So, set the tag name to the target commit to generate release notes from the last semver tag to the target commit
298
-
# See https://docs.github.com/en/rest/releases/releases?apiVersion=2022-11-28#generate-release-notes-content-for-a-release--parameters
299
-
# Note the following _does not change releases or tags_ - it only creates release notes, just like clicking "Generate Release Notes" on the GitHub Releases page.
Release v${RELEASE_VERSION}. After merging, create a [GitHub Release](https://github.com/${{ github.repository }}/releases/new?tag=v${RELEASE_VERSION}&title=v${RELEASE_VERSION}) to tag and trigger the release pipeline.
114
+
115
+
### Testing
116
+
117
+
Install the [dev-build](https://github.com/slackapi/slack-cli/releases/tag/dev-build) and verify changes.
118
+
119
+
### Requirements
120
+
121
+
- [x] I've read and understood the [Contributing Guidelines](https://github.com/slackapi/slack-cli/blob/main/.github/CONTRIBUTING.md) and have done my best effort to follow them.
122
+
- [x] I've read and agree to the [Code of Conduct](https://slackhq.github.io/code-of-conduct).
123
+
EOF
124
+
)
125
+
126
+
# Check if a PR from rc already exists
127
+
EXISTING_PR=$(gh pr list --head rc --base main --json number --jq '.[0].number' 2>/dev/null || true)
0 commit comments