Release v6.5.1 #82
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
pull_request: | |
types: | |
- opened | |
branches: | |
- main | |
jobs: | |
call-release-checklist-workflow: | |
uses: ASFHyP3/actions/.github/workflows/[email protected] | |
permissions: | |
pull-requests: write | |
with: | |
additional_developer_items: | | |
- [ ] If the step function code has changed, have you drained the job queue before merging? | |
* For example, if the interface for a Lambda function has changed to expect different input, | |
then currently running jobs (which use the old step function definition) will call the new | |
function with the old input. So we must drain the job queue before deployment, so that the new | |
function is only called by the new step function definition. | |
secrets: | |
USER_TOKEN: ${{ secrets.GITHUB_TOKEN }} |