-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[No QA] Fix too-big checklists #31458
Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit
Hold shift + click to select a range
9a27672
Create callable workflow to create the checklist
roryabraham 91e516d
Add pretty name to each step
roryabraham 92ca8cf
Rename checklist.yml to createDeployChecklist.yml
roryabraham 5c48509
Use callable workflow in platformDeploy.yml
roryabraham 60c172f
Use callable workflow in deployBlocker.yml
roryabraham 4cc5599
Update outdated utils function in preGenerateTest
roryabraham 4afd9be
Include workflow_tests/repo in .gitignore
roryabraham 6557465
Merge branch 'main' into Rory-CallableChecklistJob
roryabraham e214ad0
Merge branch 'main' into Rory-CallableChecklistJob
roryabraham 9eaaf17
Merge branch 'main' into Rory-CallableChecklistJob
roryabraham ea53025
Use version from package.json instead of input
roryabraham fa629c3
Sort PRs for better readability in workflow logs
roryabraham ff2514c
Log repack command
roryabraham 16d56b1
Add success log
roryabraham 86b8231
Fix sorting
roryabraham 9e27cd1
Create create_basic_pr utility function
roryabraham e5ec3b4
DRY up script further with deploy_staging and deploy_production
roryabraham 5b33318
Add another test case
roryabraham cf71429
Simplify didVersionChange
roryabraham 490dd4f
Merge branch 'main' into Rory-CallableChecklistJob
roryabraham 647d0ae
Use the same base tag for shallow-exclude
roryabraham 80c05e2
Make OSBotify create the checklist
roryabraham 402d64f
Fix tests
roryabraham 0c91a09
fix lint
roryabraham 0a95bab
Resolve merge conflicts
mountiny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Create or update deploy checklist | ||
|
||
on: | ||
workflow_call: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
createChecklist: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Node | ||
uses: ./.github/actions/composite/setupNode | ||
|
||
- name: Set up git for OSBotify | ||
id: setupGitForOSBotify | ||
uses: ./.github/actions/composite/setupGitForOSBotifyApp | ||
with: | ||
GPG_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} | ||
OS_BOTIFY_APP_ID: ${{ secrets.OS_BOTIFY_APP_ID }} | ||
OS_BOTIFY_PRIVATE_KEY: ${{ secrets.OS_BOTIFY_PRIVATE_KEY }} | ||
|
||
- name: Create or update deploy checklist | ||
uses: ./.github/actions/javascript/createOrUpdateStagingDeploy | ||
with: | ||
GITHUB_TOKEN: ${{ steps.setupGitForOSBotify.outputs.OS_BOTIFY_API_TOKEN }} |
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
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
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be cleaner to call this create or update too