Skip to content

Commit 5774a29

Browse files
committed
workflow/ci: Add checks:write permission and explicit reopened trigger
The CI action now creates individual GitHub Check Runs per test, which requires 'checks: write' permission on the GITHUB_TOKEN. Also make the pull_request trigger types explicit to include 'reopened', allowing CI to be retriggered by closing and reopening a PR.
1 parent de3bbda commit 5774a29

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
name: CI
22

3-
on: [pull_request]
3+
on:
4+
pull_request:
5+
types: [opened, synchronize, reopened]
6+
7+
permissions:
8+
checks: write
9+
pull-requests: write
410

511
jobs:
612
ci:

0 commit comments

Comments
 (0)