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
4 changes: 4 additions & 0 deletions .github/workflows/cherry-pick-to-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ jobs:
with:
# Use the dynamically generated GitHub App token
token: ${{ steps.generate-token.outputs.token }}
# Explicitly check out the base branch (the PR is already merged into it).
# Avoids the default `refs/pull/<PR>/merge` ref, which actions/checkout
# refuses to check out for fork PRs on pull_request_target events.
ref: ${{ github.event.pull_request.base.ref }}
fetch-depth: 0

- name: Configure Git Author
Expand Down
Loading