Skip to content

Releasability status #2722

Releasability status

Releasability status #2722

Workflow file for this run

name: Releasability status
on:
workflow_run:
workflows:
- Build
types:
- completed
branches:
- master
- branch-*
- dogfood-*
workflow_dispatch:
jobs:
update_releasability_status:
runs-on: github-ubuntu-latest-s
name: Releasability status
permissions:
id-token: write
statuses: write
contents: read
if: >-
github.event_name == 'workflow_dispatch' ||
github.event.workflow_run.conclusion == 'success'
steps:
- uses: SonarSource/gh-action_releasability/releasability-status@v3
with:
# CheckManifestValues is not supported for python projects (see PREQ-465)
optional_checks: "Jira,CheckManifestValues"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}