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: 2 additions & 4 deletions .github/workflows/bot-pr-missing-linked-issue.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This workflow checks PRs for missing linked issues and posts reminder comments when needed.
# Uses pull_request_target to enable write permissions for fork PRs while checking out
# only the base branch code (ref: main) to avoid executing untrusted fork code.
# Uses pull_request_target to enable write permissions for fork PRs while relying
# on the trusted base-branch checkout to avoid executing untrusted fork code.
Comment thread
manishdait marked this conversation as resolved.
name: PR Missing Linked Issue Reminder

on:
Expand Down Expand Up @@ -39,8 +39,6 @@ jobs:

- name: Checkout repository
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
ref: ${{ github.event.pull_request.base.sha || github.sha }}

- name: Check PR for missing linked issue
env:
Expand Down
Loading