-1
.github/workflows/check-format.yml
-1
.github/workflows/check-format.yml
+1
-1
.github/workflows/codeowners-v2.yml
+1
-1
.github/workflows/codeowners-v2.yml
+49
.github/workflows/edited.yml
+49
.github/workflows/edited.yml
···+# Some workflows depend on the base branch of the PR, but changing the base branch is not included in the default trigger events, which would be `opened`, `synchronize` or `reopened`.+# Since `edited` is also triggered when PR title/body is changed, we use this wrapper workflow, to run the other workflows conditionally only.+# Instead of adding this to each workflow's pull_request_target event, we trigger this in a separate workflow.+# This has the advantage, that we can actually skip running those jobs for simple edits like changing the title or description.+# The actual trigger happens by closing and re-opening the pull request, which triggers the default pull_request_target events.+if: github.event.changes.base.ref.from && github.event.changes.base.ref.from != github.event.pull_request.base.ref
-1
.github/workflows/labels.yml
-1
.github/workflows/labels.yml
-5
.github/workflows/nixpkgs-vet.yml
-5
.github/workflows/nixpkgs-vet.yml
···-# This workflow depends on the base branch of the PR, but changing the base branch is not included in the default trigger events, which would be `opened`, `synchronize` or `reopened`.-# While `edited` is also triggered when the PR title/body is changed, this PR action is fairly quick, and PRs don't get edited **that** often, so it shouldn't be a problem.-# There is a feature request for adding a `base_changed` event: https://github.com/orgs/community/discussions/35058