diff --git a/.github/workflows/PullRequestCreated.yml b/.github/workflows/PullRequestCreated.yml index 88e6f91a..0af46c4d 100644 --- a/.github/workflows/PullRequestCreated.yml +++ b/.github/workflows/PullRequestCreated.yml @@ -13,6 +13,7 @@ jobs: # For external PR, ticket should be created manually if: | github.event.pull_request.head.repo.full_name == github.repository + && !startsWith(github.event.pull_request.title, 'NO-JIRA') steps: - id: secrets uses: SonarSource/vault-action-wrapper@v3 diff --git a/.github/workflows/releasability.yaml b/.github/workflows/releasability.yaml index c4dc616d..f23a5598 100644 --- a/.github/workflows/releasability.yaml +++ b/.github/workflows/releasability.yaml @@ -1,10 +1,13 @@ -# yamllint disable rule:line-length ---- name: Releasability status -'on': - check_suite: - types: - - completed +on: + workflow_run: + workflows: [ "Build" ] # Name must match the name of the build workflow + types: [ completed ] + branches: + - master + - dogfood-* + - branch-* + jobs: update_releasability_status: runs-on: github-ubuntu-latest-s