Skip to content

Releasability status #1734

Releasability status

Releasability status #1734

Workflow file for this run

name: Releasability status
"on":
check_suite:
types:
- completed
workflow_dispatch:
jobs:
update_releasability_status:
runs-on: ubuntu-latest-large
name: Releasability status
permissions:
id-token: write
statuses: write
contents: read
if: >-
github.event_name == 'workflow_dispatch' ||
((contains(fromJSON('["main", "master"]'),
github.event.check_suite.head_branch) ||
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@v2
with:
# CheckManifestValues is not supported for python projects (see PREQ-465)
optional_checks: "Jira,CheckManifestValues"
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"