We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 995a47a commit c7eba5dCopy full SHA for c7eba5d
.github/workflows/ci.yml
.github/workflows/sync_configs.yml
@@ -18,7 +18,11 @@ jobs:
18
run: |
19
git clone https://github.com/dry-rb/devtools.git tmp/devtools
20
21
- rsync --ignore-existing -av tmp/devtools/shared/ .
+ if [ -f ".github/workflows/custom_ci.yml" ]; then
22
+ rsync -av --exclude '.github/workflows/ci.yml' tmp/devtools/shared/ . ;
23
+ else
24
+ rsync -av tmp/devtools/shared/ . ;
25
+ fi
26
27
git config --local user.email "[email protected]"
28
git config --local user.name "dry-bot"
0 commit comments