-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(releases): Update docs to use GitHub App instead of service acco…
…unt PAT (#11805) * use Github App instead of PAT * include instructions for creating rulesets * fix syntaxs * Move the json file to the public folder * Testing * dummy commit to trigger build on docs site * revert dummy change * fix the link to json file * Apply suggestions from code review Co-authored-by: Liza Mock <[email protected]> * fix the link * update the action app version * not required codeowner review by default * update default ruleset to include `release-bot` team for getsentry-bot --------- Co-authored-by: Liza Mock <[email protected]>
- Loading branch information
1 parent
4ebe9bf
commit c2a1f13
Showing
2 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"name": "Default", | ||
"target": "branch", | ||
"source_type": "Repository", | ||
"enforcement": "active", | ||
"conditions": { | ||
"ref_name": { | ||
"exclude": [], | ||
"include": [ | ||
"~DEFAULT_BRANCH" | ||
] | ||
} | ||
}, | ||
"rules": [ | ||
{ | ||
"type": "pull_request", | ||
"parameters": { | ||
"required_approving_review_count": 1, | ||
"dismiss_stale_reviews_on_push": false, | ||
"require_code_owner_review": false, | ||
"require_last_push_approval": false, | ||
"required_review_thread_resolution": false, | ||
"automatic_copilot_code_review_enabled": false | ||
} | ||
}, | ||
{ | ||
"type": "deletion" | ||
}, | ||
{ | ||
"type": "non_fast_forward" | ||
} | ||
], | ||
"bypass_actors": [ | ||
{ | ||
"actor_id": 988504, | ||
"actor_type": "Integration", | ||
"bypass_mode": "always" | ||
}, | ||
{ | ||
"actor_id": 4687313, | ||
"actor_type": "Team", | ||
"bypass_mode": "always" | ||
} | ||
] | ||
} |