Skip to content

Commit 2117e61

Browse files
committed
Disabled gem sync for Ruby 4.0 release
1 parent 74a3653 commit 2117e61

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/sync_default_gems.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
name: Sync default gems
2+
3+
env:
4+
DEFAULT_GEM_SYNC_ENABLED: false
5+
26
on:
37
workflow_dispatch:
48
inputs:
@@ -58,7 +62,7 @@ jobs:
5862
run: |
5963
git pull --rebase origin ${GITHUB_REF#refs/heads/}
6064
git push origin ${GITHUB_REF#refs/heads/}
61-
if: ${{ steps.sync.outputs.update }}
65+
if: ${{ steps.sync.outputs.update && env.DEFAULT_GEM_SYNC_ENABLED == 'true' }}
6266
env:
6367
6468
GIT_AUTHOR_NAME: git

0 commit comments

Comments
 (0)