Skip to content

Commit 5935826

Browse files
committed
chore: update compiled workflows via e2e.sh
1 parent 6286b6e commit 5935826

6 files changed

Lines changed: 11 additions & 9 deletions

.github/workflows/test-claude-safe-jobs.lock.yml

Lines changed: 4 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/test-claude-safe-jobs.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ safe-outputs:
1717
required: true
1818
type: string
1919
steps:
20+
- name: See artifacts
21+
run: cd /tmp/gh-aw/safe-jobs && ls -lR
2022
- name: print message
21-
env:
22-
MESSAGE: "${{ inputs.message }}"
2323
run: |
24+
MESSAGE=$(cat "$GH_AW_AGENT_OUTPUT" | jq -r '.items[] | select(.type == "print") | .message')
2425
if [ -z "$MESSAGE" ]; then
2526
echo "Error: message is empty"
2627
exit 1

.github/workflows/test-codex-safe-jobs.lock.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/test-codex-safe-jobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ safe-outputs:
2121
run: cd /tmp/gh-aw/safe-jobs && ls -lR
2222
- name: print message
2323
run: |
24-
MESSAGE=$(cat "$GITHUB_AW_AGENT_OUTPUT" | jq -r '.items[] | select(.type == "print") | .message')
24+
MESSAGE=$(cat "$GH_AW_AGENT_OUTPUT" | jq -r '.items[] | select(.type == "print") | .message')
2525
if [ -z "$MESSAGE" ]; then
2626
echo "Error: message is empty"
2727
exit 1

.github/workflows/test-copilot-safe-jobs.lock.yml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/test-copilot-safe-jobs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ safe-outputs:
2121
run: cd /tmp/gh-aw/safe-jobs && ls -lR
2222
- name: print message
2323
run: |
24-
MESSAGE=$(cat "$GITHUB_AW_AGENT_OUTPUT" | jq -r '.items[] | select(.type == "print") | .message')
24+
MESSAGE=$(cat "$GH_AW_AGENT_OUTPUT" | jq -r '.items[] | select(.type == "print") | .message')
2525
if [ -z "$MESSAGE" ]; then
2626
echo "Error: message is empty"
2727
exit 1

0 commit comments

Comments
 (0)