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
8 changes: 5 additions & 3 deletions .github/workflows/pr-check-signed-commits.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Check signed commits in PR

on: pull_request_target

permissions:
contents: read
pull-requests: write

jobs:
build:
name: Check signed commits in PR
permissions:
contents: read
pull-requests: write
runs-on: ubuntu-latest
steps:
- name: Check signed commits in PR
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/release-pr.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
name: Open Release PR for review

on:
create:
branches:

name: Open Release PR for review
permissions:
contents: read
pull-requests: write

jobs:
# This job is necessary because GitHub does not (yet) support
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches: main
types: closed

permissions:
contents: write

jobs:
release:
runs-on: ubuntu-latest
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Tests
permissions:
contents: read

on:
push:
branches: main
pull_request:

permissions:
contents: read

jobs:
test:
name: Test
Expand Down