We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 74a3653 commit 2117e61Copy full SHA for 2117e61
1 file changed
.github/workflows/sync_default_gems.yml
@@ -1,4 +1,8 @@
1
name: Sync default gems
2
+
3
+env:
4
+ DEFAULT_GEM_SYNC_ENABLED: false
5
6
on:
7
workflow_dispatch:
8
inputs:
@@ -58,7 +62,7 @@ jobs:
58
62
run: |
59
63
git pull --rebase origin ${GITHUB_REF#refs/heads/}
60
64
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' }}
66
env:
67
EMAIL: svn-admin@ruby-lang.org
68
GIT_AUTHOR_NAME: git
0 commit comments