workflows/pr: rename to pull-request-target

To be able to disable the pr.yml workflow on GitHub, we need to rename
it to a different name. Let's use the long name for consistency with
merge-group.yml. This only affects the GitHub-internal name, not the
visible name in the PR checklist, which is still "PR". This visible name
is also used by nixpkgs-review, so that won't break.
This commit is contained in:
Wolfgang Walther
2025-11-01 12:53:03 +01:00
parent 9718f2952f
commit f66a380ea3
5 changed files with 17 additions and 5 deletions

View File

@@ -64,7 +64,7 @@ This results in a key with the following semantics:
## Required Status Checks ## Required Status Checks
The "Required Status Checks" branch ruleset is implemented in two top-level workflows: `pr.yml` and `merge-group.yml`. The "Required Status Checks" branch ruleset is implemented in two top-level workflows: `pull-request-target.yml` and `merge-group.yml`.
The PR workflow defines all checks that need to succeed to add a Pull Request to the Merge Queue. The PR workflow defines all checks that need to succeed to add a Pull Request to the Merge Queue.
If no Merge Queue is set up for a branch, the PR workflow defines the checks required to merge into the target branch. If no Merge Queue is set up for a branch, the PR workflow defines the checks required to merge into the target branch.

View File

@@ -102,7 +102,7 @@ jobs:
const run_id = (await github.rest.actions.listWorkflowRuns({ const run_id = (await github.rest.actions.listWorkflowRuns({
owner: context.repo.owner, owner: context.repo.owner,
repo: context.repo.repo, repo: context.repo.repo,
workflow_id: context.eventName === 'pull_request' ? 'test.yml' : 'pr.yml', workflow_id: context.eventName === 'pull_request' ? 'test.yml' : 'pull-request-target.yml',
event: context.eventName, event: context.eventName,
head_sha: context.payload.pull_request.head.sha head_sha: context.payload.pull_request.head.sha
})).data.workflow_runs[0].id })).data.workflow_runs[0].id

View File

@@ -63,7 +63,7 @@ jobs:
'.github/workflows/eval.yml', '.github/workflows/eval.yml',
'.github/workflows/labels.yml', '.github/workflows/labels.yml',
'.github/workflows/lint.yml', '.github/workflows/lint.yml',
'.github/workflows/pr.yml', '.github/workflows/pull-request-target.yml',
'.github/workflows/reviewers.yml', '.github/workflows/reviewers.yml',
'.github/workflows/test.yml', '.github/workflows/test.yml',
].includes(file))) core.setOutput('pr', true) ].includes(file))) core.setOutput('pr', true)
@@ -87,7 +87,7 @@ jobs:
if: needs.prepare.outputs.pr if: needs.prepare.outputs.pr
name: PR name: PR
needs: [prepare] needs: [prepare]
uses: ./.github/workflows/pr.yml uses: ./.github/workflows/pull-request-target.yml
# Those are actually only used on the pull_request_target event, but will throw an error if not set. # Those are actually only used on the pull_request_target event, but will throw an error if not set.
permissions: permissions:
issues: write issues: write

View File

@@ -199,12 +199,24 @@ module.exports = async ({ github, context, core, dry }) => {
( (
await github.rest.actions.listWorkflowRuns({ await github.rest.actions.listWorkflowRuns({
...context.repo, ...context.repo,
workflow_id: 'pull-request-target.yml',
event: 'pull_request_target',
exclude_pull_requests: true,
head_sha: pull_request.head.sha,
})
).data.workflow_runs[0] ??
// TODO: Remove this after 2026-02-01, at which point all pr.yml artifacts will have expired.
(
await github.rest.actions.listWorkflowRuns({
...context.repo,
// In older PRs, we need pr.yml instead of pull-request-target.yml.
workflow_id: 'pr.yml', workflow_id: 'pr.yml',
event: 'pull_request_target', event: 'pull_request_target',
exclude_pull_requests: true, exclude_pull_requests: true,
head_sha: pull_request.head.sha, head_sha: pull_request.head.sha,
}) })
).data.workflow_runs[0] ?? {} ).data.workflow_runs[0] ??
{}
// Newer PRs might not have run Eval to completion, yet. // Newer PRs might not have run Eval to completion, yet.
// Older PRs might not have an eval.yml workflow, yet. // Older PRs might not have an eval.yml workflow, yet.