We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7c8b1 commit f5554c9Copy full SHA for f5554c9
1 file changed
.github/workflows/configlet-sync.yml
@@ -55,8 +55,6 @@ jobs:
55
configlet_raw_output="$(./bin/configlet sync --tests 2>&1 || true)"
56
57
printf "configlet output:\n%s\n" "$configlet_raw_output"
58
- mkdir -p temp
59
- printf '```\n%s\n```\n' "$configlet_raw_output" > temp/sync-test-output.txt
60
printf 'output<<EOF\n%s\nEOF\n' "$configlet_raw_output" > "$GITHUB_OUTPUT"
61
62
- name: Find existing issue for test sync
@@ -79,6 +77,8 @@ jobs:
79
77
80
78
- name: Create or Update issue if tests are not synced
81
if: ${{ !contains(steps.sync_test.outputs.output, 'Every exercise has up-to-date tests!') }}
+ mkdir -p temp
+ printf '```\n%s\n```\n' "${{ steps.sync_test.outputs.output }}" > temp/sync-test-output.txt
82
uses: peter-evans/create-issue-from-file@v5
83
with:
84
token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments