Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Fedora packaging:
GitHub release:
- [ ] Wait until the Bodhi update shows "Signed :heavy_check_mark:" in the Metadata box.
- [ ] Verify that the signing script can fetch the release binaries by running `./signing-ticket.sh test <x.y.z-r> <output-dir>`, where `r` is the Release of the Fedora package without the dist tag (probably `1`)
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](https://pagure.io/releng/new_issue).
- [ ] Run `./signing-ticket.sh ticket <x.y.z-r>` and paste the output into a [releng ticket](forge.fedoraproject.org/releng/tickets/issues/new).
- [ ] Wait for the ticket to be closed
- [ ] Download the artifacts and signatures
- [ ] Verify the signatures
Expand Down
35 changes: 35 additions & 0 deletions .github/workflows/owners-file-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Maintained in https://github.com/coreos/repo-templates
# Do not edit downstream.

name: PR Gating Action

on:
issue_comment:
types: [created]
pull_request:
types: [opened, labeled, unlabeled]

jobs:
handle-event:
if: >-
github.event_name == 'pull_request' ||
(github.event_name == 'issue_comment' && github.event.issue.pull_request)
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write

steps:
- name: Checkout Code
uses: actions/checkout@v6

- name: Run Owners Action
uses: coreos/owners-file-action@v2.1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
owners-file: "OWNERS"
env:
AUTO_MERGE: false
MERGE_STRATEGY: merge
AUTO_ASSIGN_REVIEWERS: 2
AUTO_ASSIGN_APPROVERS: 1
Loading