We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 197d114 commit 9b30b35Copy full SHA for 9b30b35
1 file changed
.github/workflows/configlet-sync.yml
@@ -52,10 +52,7 @@ jobs:
52
- name: Run configlet sync for test and capture output
53
id: sync_test
54
run: |
55
- configlet_raw_output="$(./bin/configlet sync --tests 2>&1 || true)"
56
-
57
- printf "configlet output:\n%s\n" "$configlet_raw_output"
58
- printf 'output<<EOF\n%s\nEOF\n' "$configlet_raw_output" > "$GITHUB_OUTPUT"
+ printf 'output<<EOF\n%s\nEOF\n' "$(./bin/configlet sync --tests 2>&1 || true)" > "$GITHUB_OUTPUT"
59
60
- name: Find existing issue for test sync
61
id: find_issue
0 commit comments