We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68a5780 commit d272fc8Copy full SHA for d272fc8
1 file changed
.github/workflows/configlet-sync.yml
@@ -1,9 +1,7 @@
1
name: Configlet Auto Sync
2
3
on:
4
- workflow_dispatch:
5
- schedule:
6
- - cron: '0 0 15 * *'
+ workflow_call:
7
8
jobs:
9
sync-docs-metadata:
@@ -51,15 +49,12 @@ jobs:
51
49
52
50
- name: Run configlet sync for test and capture output
53
id: sync_test
+ shell: bash {0}
54
run: |
55
- set +e
56
configlet_raw_output="$(./bin/configlet sync --tests 2>&1)"
57
exit_code=$?
58
- set -e
59
-
60
echo "exit_code=$exit_code" >> "$GITHUB_OUTPUT"
61
printf "output<<EOF\n%s\nEOF\n" "$configlet_raw_output" >> "$GITHUB_OUTPUT"
62
63
printf "configlet output:\n%s\n" "$configlet_raw_output"
64
65
- name: Format test sync output and find existing issue
0 commit comments