File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Gihub Actions launch scheduled workflows of the main branch only (sycl).
2
+ # This is a workaround to set a scheduled launch of the sycl-rel-nightly.yml
3
+ # workflow, which is located on the sycl-rel-* branch.
4
+
5
+ name : Scheduled sycl-rel-nightly launch
6
+
7
+ on :
8
+ schedule :
9
+ # The sycl-rel-nightly.yml workflow file on the sycl-rel-6_2 branch is most
10
+ # likely stale. Do not schedule before it's updated.
11
+ # - cron: '0 3 * * *'
12
+ workflow_dispatch :
13
+
14
+ jobs :
15
+ launch :
16
+ if : github.repository == 'intel/llvm'
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - name : Launch
20
+ env :
21
+ GH_TOKEN : ${{ github.token }}
22
+ run : |
23
+ gh workflow run sycl-rel-nightly.yml --repo ${{ github.repository }} --ref sycl-rel-6_2
You can’t perform that action at this time.
0 commit comments