Skip to content

Commit c1b36ec

Browse files
Seppli11joke1196
andauthoredMar 21, 2025
SCANPY-75: Added releasability task to CI (#159)
Co-authored-by: David Kunzmann <david.kunzmann@sonarsource.com>
1 parent 87c678e commit c1b36ec

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
 

‎.github/workflows/releasability.yml

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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 }}"

0 commit comments

Comments
 (0)