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
6 changes: 3 additions & 3 deletions docs/admin-state/php-bin-after.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "https://api.github.com/repos/Bigpixelrocket/php-bin/subscription"
},
"branchProtection": null,
"capturedAt": "2026-08-04T12:48:50Z",
"capturedAt": "2026-08-05T08:15:54Z",
"environments": {
"environments": [
{
Expand Down Expand Up @@ -208,14 +208,14 @@
],
"verified_allowed": false
},
"snapshotDigest": "sha256:7cc0280415bc135c1d262e01a429c18c6116dc770d8c8bfcf94d83187ccfc53a",
"snapshotDigest": "sha256:3486213a008395f750d5d8c4bc33380704ac687fcf41dfd7adf84d104a2ca770",
"variables": [
"AUTORELEASE_EMAIL_FROM",
"AUTORELEASE_EMAIL_TO",
"AUTORELEASE_OWNER"
],
"workflowPermissions": {
"can_approve_pull_request_reviews": false,
"can_approve_pull_request_reviews": true,
"default_workflow_permissions": "read"
}
}
7 changes: 6 additions & 1 deletion scripts/configure-github-autorelease
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,12 @@ try:
"PUT",
input_value={
"default_workflow_permissions": "read",
"can_approve_pull_request_reviews": False,
# Despite its name, this flag governs the single "create and
# approve pull requests" permission. The watcher and consumer
# open deterministic PRs with GITHUB_TOKEN daily, so it must stay
# enabled; approvals remain owner-only through the ruleset and
# protected controls.
"can_approve_pull_request_reviews": True,
},
)
gh("api", f"repos/{args.repo}/immutable-releases", "--method", "PUT")
Expand Down
Loading