You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/external_trigger.yml
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -4,24 +4,24 @@ on:
4
4
workflow_dispatch:
5
5
6
6
jobs:
7
-
external-trigger-master:
7
+
external-trigger-nightly:
8
8
runs-on: ubuntu-latest
9
9
steps:
10
10
- uses: actions/checkout@v2.3.3
11
11
12
12
- name: External Trigger
13
-
if: github.ref == 'refs/heads/master'
13
+
if: github.ref == 'refs/heads/nightly'
14
14
run: |
15
-
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_MYLAR3_MASTER }}" ]; then
16
-
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_MYLAR3_MASTER is set; skipping trigger. ****"
15
+
if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_MYLAR3_NIGHTLY }}" ]; then
16
+
echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_MYLAR3_NIGHTLY is set; skipping trigger. ****"
17
17
exit 0
18
18
fi
19
-
echo "**** External trigger running off of master branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MYLAR3_MASTER\". ****"
19
+
echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_MYLAR3_NIGHTLY\". ****"
0 commit comments