Skip to content

Commit 40f44d7

Browse files
NO-JIRA Fix releasability check; no tickets for NO-JIRA commits
1 parent ee51865 commit 40f44d7

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/PullRequestCreated.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
# For external PR, ticket should be created manually
1414
if: |
1515
github.event.pull_request.head.repo.full_name == github.repository
16+
&& !startsWith(github.event.pull_request.title, 'NO-JIRA')
1617
steps:
1718
- id: secrets
1819
uses: SonarSource/vault-action-wrapper@v3

.github/workflows/releasability.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
1-
# yamllint disable rule:line-length
2-
---
31
name: Releasability status
4-
'on':
5-
check_suite:
6-
types:
7-
- completed
2+
on:
3+
workflow_run:
4+
workflows: [ "Build" ] # Name must match the name of the build workflow
5+
types: [ completed ]
6+
branches:
7+
- master
8+
- dogfood-*
9+
- branch-*
10+
811
jobs:
912
update_releasability_status:
1013
runs-on: github-ubuntu-latest-s

0 commit comments

Comments
 (0)