Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr edit ${{ github.event.pull_request.number }} \
gh issue edit ${{ github.event.pull_request.number }} \
--repo "$GITHUB_REPOSITORY" \
--add-label "breaking-change-analyzed"

Expand All @@ -156,7 +156,7 @@ jobs:
env:
GH_TOKEN: ${{ github.token }}
run: |
gh pr edit ${{ github.event.pull_request.number }} \
gh issue edit ${{ github.event.pull_request.number }} \
--repo "$GITHUB_REPOSITORY" \
--add-label "breaking-change"

Expand Down Expand Up @@ -186,7 +186,7 @@ jobs:
printf '*This analysis was performed by Claude Code Action*\n'
} > "$TMPFILE"

gh pr comment ${{ github.event.pull_request.number }} \
gh issue comment ${{ github.event.pull_request.number }} \
--repo "$GITHUB_REPOSITORY" \
--body-file "$TMPFILE"

Expand Down
Loading