File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Releasability status
2+ " on " :
3+ check_suite :
4+ types :
5+ - completed
6+ workflow_dispatch :
7+
8+ jobs :
9+ update_releasability_status :
10+ runs-on : ubuntu-latest
11+ name : Releasability status
12+ permissions :
13+ id-token : write
14+ statuses : write
15+ contents : read
16+ if : >-
17+ github.event_name == 'workflow_dispatch' ||
18+ ((contains(fromJSON('["main", "master"]'),
19+ github.event.check_suite.head_branch) ||
20+ startsWith(github.event.check_suite.head_branch, 'branch-')) &&
21+ github.event.check_suite.conclusion == 'success' &&
22+ github.event.check_suite.app.slug == 'cirrus-ci')
23+ steps :
24+ - uses : >-
25+ SonarSource/gh-action_releasability/releasability-status@v2
26+ with:
27+ # CheckManifestValues is not supported for python projects (see PREQ-465)
28+ optional_checks: "Jira,CheckManifestValues"
29+ env:
30+ GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
You can’t perform that action at this time.
0 commit comments