Skip to content
Closed
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
Original file line number Diff line number Diff line change
Expand Up @@ -115962,10 +115962,11 @@
},
"bypass_mode": {
"type": "string",
"description": "When the specified actor can bypass the ruleset. `pull_request` means that an actor can only bypass rules on pull requests. `pull_request` is not applicable for the `DeployKey` actor type. Also, `pull_request` is only applicable to branch rulesets.",
"description": "When the specified actor can bypass the ruleset. `pull_request` means that an actor can only bypass rules on pull requests. `pull_request` is not applicable for the `DeployKey` actor type. Also, `pull_request` is only applicable to branch rulesets. When `bypass_mode` is `exempt`, rules will not be run for that actor and a bypass audit entry will not be created.",
"enum": [
"always",
"pull_request"
"pull_request",
"exempt"
],
"default": "always"
}
Expand Down Expand Up @@ -117178,7 +117179,8 @@
"enum": [
"always",
"pull_requests_only",
"never"
"never",
"exempt"
]
},
"node_id": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84132,10 +84132,13 @@ components:
description: When the specified actor can bypass the ruleset. `pull_request`
means that an actor can only bypass rules on pull requests. `pull_request`
is not applicable for the `DeployKey` actor type. Also, `pull_request`
is only applicable to branch rulesets.
is only applicable to branch rulesets. When `bypass_mode` is `exempt`,
rules will not be run for that actor and a bypass audit entry will not
be created.
enum:
- always
- pull_request
- exempt
default: always
repository-ruleset-conditions:
title: Repository ruleset conditions for ref names
Expand Down Expand Up @@ -85040,6 +85043,7 @@ components:
- always
- pull_requests_only
- never
- exempt
node_id:
type: string
_links:
Expand Down
Loading