-
Notifications
You must be signed in to change notification settings - Fork 689
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add releasability status check (#4835)
- Loading branch information
1 parent
f8745ef
commit a8b7a05
Showing
1 changed file
with
21 additions
and
0 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,21 @@ | ||
name: Releasability status | ||
'on': | ||
check_suite: | ||
types: | ||
- completed | ||
jobs: | ||
update_releasability_status: | ||
runs-on: ubuntu-latest | ||
name: Releasability status | ||
permissions: | ||
id-token: write | ||
statuses: write | ||
contents: read | ||
if: >- | ||
(contains(fromJSON('["main", "master"]'), github.event.check_suite.head_branch) || startsWith(github.event.check_suite.head_branch, 'dogfood-') || startsWith(github.event.check_suite.head_branch, 'branch-')) | ||
&& github.event.check_suite.conclusion == 'success' | ||
&& github.event.check_suite.app.slug == 'cirrus-ci' | ||
steps: | ||
- uses: SonarSource/gh-action_releasability/releasability-status@23c9ad31b2d613bade88da898dfdca0b5c65ac69 # v1.2.1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |