Skip to content

Commit 513aa51

Browse files
committed
disable keepalive-workflow while the repo is not available
1 parent adf306c commit 513aa51

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/build_LoopFollow.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -168,12 +168,14 @@ jobs:
168168
169169
# Keep repository "alive": add empty commits to ALIVE_BRANCH after "time_elapsed" days of inactivity to avoid inactivation of scheduled workflows
170170
- name: Keep alive
171-
if: |
172-
needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
173-
(vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
174-
uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings
175-
with:
176-
time_elapsed: 20 # Time elapsed from the previous commit to trigger a new automated commit (in days)
171+
run: |
172+
echo "Keep Alive is temporarily removed"
173+
# if: |
174+
# needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION == 'true' &&
175+
# (vars.SCHEDULED_BUILD != 'false' || vars.SCHEDULED_SYNC != 'false')
176+
# uses: gautamkrishnar/keepalive-workflow@v1 # using the workflow with default settings
177+
# with:
178+
# time_elapsed: 20 # Time elapsed from the previous commit to trigger a new automated commit (in days)
177179

178180
- name: Show scheduled build configuration message
179181
if: needs.check_alive_and_permissions.outputs.WORKFLOW_PERMISSION != 'true'

0 commit comments

Comments
 (0)