Fix and clarify workflow logic, add branch versioning

- `pr.yml` should've been deleted a long time ago. Its functionality
  was already elsewhere, and that's since been folded into `test.yml`.
- I added automatic `release-v*` and `main-v*` versioning.
- Renamed `merge.yml` to `push-release.yml` and `push-main.yml` to
  `pr-create-release.yml` so it's clearer what they're actually
  listening to. I also modified their display names.
This commit is contained in:
Claudia Meadows 2024-09-24 22:11:10 -07:00
parent 08f5ccfeda
commit 542946fd74
No known key found for this signature in database
GPG key ID: C86B594396786760
5 changed files with 21 additions and 37 deletions

11
.github/workflows/pr-create-release.yml vendored Normal file
View file

@ -0,0 +1,11 @@
name: Warn on opening a PR to `release`
on:
pull_request_target:
types: [opened]
branches: [release]
permissions:
issues: write
jobs:
comment:
uses: MithrilJS/infra/.github/workflows/reject-pr.yml@main
secrets: inherit