Skip to content

Commit

Permalink
chore(security): adds branch protection policy
Browse files Browse the repository at this point in the history
  • Loading branch information
Ndiritu committed Jan 13, 2025
1 parent d5ee40c commit 9217edc
Show file tree
Hide file tree
Showing 4 changed files with 67 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .github/policies/branch-protection.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: kiota-branch-protection
description: Branch protection policy for the kiota repository
resource: repository
configuration:
branchProtectionRules:
- branchNamePattern: main
# Specifies whether this branch can be deleted. boolean
allowsDeletions: false
# Specifies whether forced pushes are allowed on this branch. boolean
allowsForcePushes: false
# Specifies whether new commits pushed to the matching branches dismiss pull request review approvals. boolean
dismissStaleReviews: true
# Specifies whether admins can overwrite branch protection. boolean
isAdminEnforced: false
# Indicates whether "Require a pull request before merging" is enabled. boolean
requiresPullRequestBeforeMerging: true
# Specifies the number of pull request reviews before merging. int (0-6). Should be null/empty if PRs are not required
requiredApprovingReviewsCount: 2
# Require review from Code Owners. Requires requiredApprovingReviewsCount. boolean
requireCodeOwnersReview: true
# Are commits required to be signed. boolean.
requiresCommitSignatures: true
# Are conversations required to be resolved before merging? boolean
requiresConversationResolution: true
# Are merge commits prohibited from being pushed to this branch. boolean
requiresLinearHistory: false
# Required status checks to pass before merging. Values can be any string, but if the value does not correspond to any existing status check, the status check will be stuck on pending for status since nothing exists to push an actual status
requiredStatusChecks:
- license/cla
- Analyze (csharp)
- dotnet-build
- check-idempotency-tests
- check-integration-tests
- build_extension
# Require branches to be up to date before merging
requiresStrictStatusChecks: true
# Indicates whether there are restrictions on who can push. boolean. Should be set with whoCanPush.
restrictsPushes: false
# Restrict who can dismiss pull request reviews. boolean
restrictsReviewDismissals: false
2 changes: 1 addition & 1 deletion .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ on:
]

jobs:
build:
dotnet-build:
runs-on: ubuntu-latest

steps:
Expand Down
13 changes: 13 additions & 0 deletions .github/workflows/idempotency-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,16 @@ jobs:
with:
artifact_name: "generator"
min_bytes: "0"

# Aggregates result of the idempotency tests for use in branch policy
check-idempotency-tests:
runs-on: ubuntu-latest
needs: idempotency
if: always()
steps:
- name: All build matrix options are successful
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: One or more build matrix options failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1
13 changes: 13 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,3 +157,16 @@ jobs:
with:
artifact_name: "generator"
min_bytes: "0"

# Aggregates result of the integration tests for use in branch policy
check-integration-tests:
runs-on: ubuntu-latest
needs: integration
if: always()
steps:
- name: All build matrix options are successful
if: ${{ !(contains(needs.*.result, 'failure')) }}
run: exit 0
- name: One or more build matrix options failed
if: ${{ contains(needs.*.result, 'failure') }}
run: exit 1

0 comments on commit 9217edc

Please sign in to comment.