Skip to content

Commit b121942

Browse files
authored
disable keepalive-workflow because the repo is no longer available (#248)
1 parent 898fd08 commit b121942

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

.github/workflows/build_loop.yml

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

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

0 commit comments

Comments
 (0)