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.
2 parents 527450f + ab56210 commit f8dc41eCopy full SHA for f8dc41e
.github/workflows/configlet-sync.yml
@@ -29,13 +29,11 @@ jobs:
29
branch: configlet-auto-sync
30
delete-branch: true
31
32
- - name: Run configlet sync for test and capture output
+ - name: Run configlet sync for tests
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
38
- echo "$output" >> $GITHUB_OUTPUT
+ ./bin/configlet sync --tests >> $GITHUB_OUTPUT
39
echo "EOF" >> $GITHUB_OUTPUT
40
41
- name: Create issue if tests are not synced
@@ -45,3 +43,4 @@ jobs:
45
43
token: ${{ secrets.GITHUB_TOKEN }}
46
44
title: "🚨 configlet sync --test found unsynced tests"
47
content-filepath: .github/auto-sync/sync-test-output.txt
+
0 commit comments