File tree Expand file tree Collapse file tree 4 files changed +58
-1
lines changed
llvm-spirv/.github/workflows Expand file tree Collapse file tree 4 files changed +58
-1
lines changed Original file line number Diff line number Diff line change @@ -177,3 +177,10 @@ jobs:
177
177
issue_number: context.issue.number,
178
178
body: `Success. Backport PR created: ${process.env.PR_URL}`
179
179
});
180
+
181
+ - name : Notify workflows
182
+ if : env.CONFLICT == 'false'
183
+ uses : peter-evans/repository-dispatch@v3
184
+ with :
185
+ token : ${{ secrets.GITHUB_TOKEN }}
186
+ event-type : backport-complete
Original file line number Diff line number Diff line change 18
18
- ' test/**' # tests
19
19
- ' **.md' # README
20
20
- ' **.txt' # CMakeLists.txt
21
- - ' **/check-**-build.yml' # Other workflows
21
+ - ' **/check-**-build.yml' # build workflows
22
+ - ' **/backport-to-branch.yml' # backport workflow
23
+ - ' **/patch-release.yaml' # patch release workflow
24
+ repository_dispatch :
25
+ types : [backport-complete]
26
+ branches :
27
+ - main
28
+ - llvm_release_*
29
+ paths-ignore : # no need to check formatting for:
30
+ - ' docs/**' # documentation
31
+ - ' test/**' # tests
32
+ - ' **.md' # README
33
+ - ' **.txt' # CMakeLists.txt
34
+ - ' **/check-**-build.yml' # build workflows
35
+ - ' **/backport-to-branch.yml' # backport workflow
36
+ - ' **/patch-release.yaml' # patch release workflow
22
37
23
38
env :
24
39
# We need compile command database in order to perform clang-tidy check. So,
Original file line number Diff line number Diff line change 16
16
- ' **.md' # README
17
17
- ' **/check-code-style.yml' # check-code-style workflow
18
18
- ' **/check-out-of-tree-build.yml' # check-out-of-tree-build workflow
19
+ - ' **/check-out-of-tree-build.yml' # check-out-of-tree-build workflow
20
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
21
+ - ' **/patch-release.yaml' # patch-release workflow
19
22
pull_request :
20
23
branches :
21
24
- main
25
28
- ' **.md' # README
26
29
- ' **/check-code-style.yml' # check-code-style workflow
27
30
- ' **/check-out-of-tree-build.yml' # check-out-of-tree-build workflow
31
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
32
+ - ' **/patch-release.yaml' # patch-release workflow
33
+ repository_dispatch :
34
+ types : [backport-complete]
35
+ branches :
36
+ - main
37
+ - llvm_release_*
38
+ paths-ignore : # no need to check formatting for:
39
+ - ' docs/**' # documentation
40
+ - ' **.md' # README
41
+ - ' **/check-code-style.yml' # check-code-style workflow
42
+ - ' **/check-out-of-tree-build.yml' # check-out-of-tree-build workflow
43
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
44
+ - ' **/patch-release.yaml' # patch-release workflow
45
+
28
46
schedule :
29
47
# Ideally, we might want to simplify our regular nightly build as we
30
48
# probably don't need every configuration to be built every day: most of
Original file line number Diff line number Diff line change 16
16
- ' **.md' # README
17
17
- ' **/check-code-style.yml' # check-code-style workflow
18
18
- ' **/check-in-tree-build.yml' # check-in-tree-build workflow
19
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
20
+ - ' **/patch-release.yaml' # patch-release workflow
21
+
19
22
pull_request :
20
23
branches :
21
24
- main
25
28
- ' **.md' # README
26
29
- ' **/check-code-style.yml' # check-code-style workflow
27
30
- ' **/check-in-tree-build.yml' # check-in-tree-build workflow
31
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
32
+ - ' **/patch-release.yaml' # patch-release workflow
33
+ repository_dispatch :
34
+ types : [backport-complete]
35
+ branches :
36
+ - main
37
+ - llvm_release_*
38
+ paths-ignore : # no need to check formatting for:
39
+ - ' docs/**' # documentation
40
+ - ' **.md' # README
41
+ - ' **/check-code-style.yml' # check-code-style workflow
42
+ - ' **/check-in-tree-build.yml' # check-in-tree-build workflow
43
+ - ' **/backport-to-branch.yml' # backport-to-branch workflow
44
+ - ' **/patch-release.yaml' # patch-release workflow
28
45
schedule :
29
46
- cron : 0 0 * * *
30
47
You can’t perform that action at this time.
0 commit comments