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 f8dc41e commit 6cbcf91Copy full SHA for 6cbcf91
.github/workflows/configlet-sync.yml
@@ -29,11 +29,13 @@ jobs:
29
branch: configlet-auto-sync
30
delete-branch: true
31
32
- - name: Run configlet sync for tests
+ - name: Run configlet sync for test and capture output
33
id: sync_test
34
run: |
35
+ mkdir -p .github/auto-sync
36
+ output="$(./bin/configlet sync --tests | tee .github/auto-sync/sync-test-output.txt)"
37
echo "output<<EOF" >> $GITHUB_OUTPUT
- ./bin/configlet sync --tests >> $GITHUB_OUTPUT
38
+ echo "$output" >> $GITHUB_OUTPUT
39
echo "EOF" >> $GITHUB_OUTPUT
40
41
- name: Create issue if tests are not synced
0 commit comments