-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Circumvent limit on the cleanup choices (#5471)
Separate cleanup between linux and macOS
- Loading branch information
Showing
2 changed files
with
39 additions
and
8 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
--- | ||
name: Clean macOS PR checks | ||
|
||
'on': | ||
workflow_dispatch: | ||
inputs: | ||
pr: | ||
description: PR number in this repo to be cleaned | ||
type: string # can't use number here | ||
required: true | ||
|
||
# Warning: GitHub limits the total number of inputs to 10, so a maximum of | ||
# 9 checks is allowed here! | ||
# Warning: the check_* keys are magic and must consist of the string | ||
# "check_" followed by the applicable check name exactly. The | ||
# "description" field is only the human-readable label for the input. | ||
'check_build/alidist/O2Suite/o2/macOS': | ||
description: build/alidist/O2Suite/o2/macOS | ||
type: boolean | ||
default: true | ||
'check_build/alidist/O2Suite/o2/macOS-arm': | ||
description: build/alidist/O2Suite/o2/macOS-arm | ||
type: boolean | ||
default: true | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
clean: | ||
name: Clean macOS PR checks | ||
uses: alisw/ali-bot/.github/workflows/clean-pr-checks.yml@master | ||
with: | ||
owner: ${{ github.event.repository.owner.login }} | ||
repo: ${{ github.event.repository.name }} | ||
pr: ${{ github.event.inputs.pr }} | ||
checks: ${{ toJSON(github.event.inputs) }} | ||
permissions: | ||
pull-requests: read # to get last commit for pr (octokit/graphql-action) | ||
statuses: write # for set-github-status |
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