Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/workflows/enforce-draft-pr-status.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
gh pr ready --undo "$PR_NUMBER" --repo "${{ github.repository }}"

- name: Add comment explaining draft status
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043 # v4.0.0
uses: peter-evans/create-or-update-comment@e8674b075228eee787fea43ef493e45ece1004c9 # v5.0.0
with:
token: ${{ steps.get-app-token.outputs.token }}
issue-number: ${{ github.event.pull_request.number }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/uv-lock-command.yml
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

📝 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2086:info:1:75: Double quote to prevent globbing and word splitting [shellcheck]

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🚫 [actionlint] reported by reviewdog 🐶
shellcheck reported issue in this script: SC2006:style:4:28: Use $(...) notation instead of legacy backticks ... [shellcheck]

Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:

- name: Append comment with job run link
id: first-comment-action
uses: peter-evans/create-or-update-comment@v5
uses: peter-evans/create-or-update-comment@v5.0.0
with:
comment-id: ${{ github.event.inputs.comment-id }}
issue-number: ${{ github.event.inputs.pr }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
git push contributor HEAD:${{ steps.vars.outputs.pr-source-git-branch }}

- name: Append success comment
uses: peter-evans/create-or-update-comment@v5
uses: peter-evans/create-or-update-comment@v5.0.0
if: steps.git-diff.outputs.changes == 'true'
with:
comment-id: ${{ steps.first-comment-action.outputs.comment-id }}
Expand All @@ -129,7 +129,7 @@ jobs:
> `uv lock` applied successfully.

- name: Append success comment (no-op)
uses: peter-evans/create-or-update-comment@v5
uses: peter-evans/create-or-update-comment@v5.0.0
if: steps.git-diff.outputs.changes != 'true'
with:
comment-id: ${{ steps.first-comment-action.outputs.comment-id }}
Expand All @@ -138,7 +138,7 @@ jobs:
> Job completed successfully (no changes).

- name: Append failure comment
uses: peter-evans/create-or-update-comment@v5
uses: peter-evans/create-or-update-comment@v5.0.0
if: failure()
with:
comment-id: ${{ steps.first-comment-action.outputs.comment-id }}
Expand Down
Loading