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/build_loop.yml
+3-4Lines changed: 3 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ env:
15
15
UPSTREAM_BRANCH: ${{ github.ref_name }} # branch on upstream repository to sync from (replace with specific branch name if needed)
16
16
TARGET_BRANCH: ${{ github.ref_name }} # target branch on fork to be kept in sync, and target branch on upstream to be kept alive (replace with specific branch name if needed)
17
17
ALIVE_BRANCH: alive
18
-
WORKFLOW_PERMISSIONS: false
19
18
20
19
jobs:
21
20
validate:
@@ -65,7 +64,7 @@ jobs:
65
64
fi
66
65
67
66
- name: Create alive branch
68
-
if: env.ALIVE_BRANCH_EXISTS != 'true'
67
+
if: env.ALIVE_BRANCH_EXISTS == 'false'
69
68
env:
70
69
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
71
70
run: |
@@ -87,7 +86,7 @@ jobs:
87
86
# Checks for changes in upstream repository; if changes exist prompts sync for build
0 commit comments