mirror of
https://github.com/anthropics/claude-code.git
synced 2026-02-19 04:27:33 -08:00
Merge pull request #5564 from anthropics/boris/lptz
Fix GitHub Actions workflow to properly escape issue titles
This commit is contained in:
4
.github/workflows/log-issue-events.yml
vendored
4
.github/workflows/log-issue-events.yml
vendored
@@ -20,7 +20,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
ISSUE_NUMBER=${{ github.event.issue.number }}
|
ISSUE_NUMBER=${{ github.event.issue.number }}
|
||||||
REPO=${{ github.repository }}
|
REPO=${{ github.repository }}
|
||||||
ISSUE_TITLE="${{ github.event.issue.title }}"
|
ISSUE_TITLE=$(echo '${{ github.event.issue.title }}' | sed "s/'/'\\\\''/g")
|
||||||
AUTHOR="${{ github.event.issue.user.login }}"
|
AUTHOR="${{ github.event.issue.user.login }}"
|
||||||
CREATED_AT="${{ github.event.issue.created_at }}"
|
CREATED_AT="${{ github.event.issue.created_at }}"
|
||||||
|
|
||||||
@@ -84,7 +84,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
ISSUE_NUMBER=${{ github.event.issue.number }}
|
ISSUE_NUMBER=${{ github.event.issue.number }}
|
||||||
REPO=${{ github.repository }}
|
REPO=${{ github.repository }}
|
||||||
ISSUE_TITLE="${{ github.event.issue.title }}"
|
ISSUE_TITLE=$(echo '${{ github.event.issue.title }}' | sed "s/'/'\\\\''/g")
|
||||||
CLOSED_BY="${{ github.event.issue.closed_by.login }}"
|
CLOSED_BY="${{ github.event.issue.closed_by.login }}"
|
||||||
CLOSED_AT="${{ github.event.issue.closed_at }}"
|
CLOSED_AT="${{ github.event.issue.closed_at }}"
|
||||||
STATE_REASON="${{ github.event.issue.state_reason }}"
|
STATE_REASON="${{ github.event.issue.state_reason }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user