We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee51865 commit 40f44d7Copy full SHA for 40f44d7
.github/workflows/PullRequestCreated.yml
@@ -13,6 +13,7 @@ jobs:
13
# For external PR, ticket should be created manually
14
if: |
15
github.event.pull_request.head.repo.full_name == github.repository
16
+ && !startsWith(github.event.pull_request.title, 'NO-JIRA')
17
steps:
18
- id: secrets
19
uses: SonarSource/vault-action-wrapper@v3
.github/workflows/releasability.yaml
@@ -1,10 +1,13 @@
1
-# yamllint disable rule:line-length
2
----
3
name: Releasability status
4
-'on':
5
- check_suite:
6
- types:
7
- - completed
+on:
+ workflow_run:
+ workflows: [ "Build" ] # Name must match the name of the build workflow
+ types: [ completed ]
+ branches:
+ - master
8
+ - dogfood-*
9
+ - branch-*
10
+
11
jobs:
12
update_releasability_status:
runs-on: github-ubuntu-latest-s
0 commit comments