Run checks in automatic update PRs #357
Labels
No labels
automation
backend
bug
contributor experience
data
deployment
documentation
duplicate
good first issue
help wanted
nice to have
notifications
package maintainer
performance
skin
tech debt
user story
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: lix-community/nix-security-tracker#357
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Technically the checks did run, the run is this one, but the run isn't linked to this PR so the checks aren't visible in the UI.
This happens for two reasons:
workflow_dispatch
and workflow dispatches are considered a "manual run", so they don't update PR information. Only["pull_request", "pull_request_review", "pull_request_review_comment", "pull_request_target", "push"]
actions can link and update an action run to a PR.GITHUB_TOKEN
. There are various workarounds we can use, I think going with the last one (GH App token) makes the most sense in our case.Originally posted by @Erethon in https://github.com/Nix-Security-WG/nix-security-tracker/issues/329#issuecomment-2475091601