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
2 changes: 2 additions & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Require the Sonic Field Labs owner to review every repository change.
* @emeisazam
24 changes: 24 additions & 0 deletions .github/workflows/repository-policy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Repository policy

on:
push:
branches: [main]
pull_request:
branches: [main]

permissions:
contents: read

jobs:
policy:
name: Repository policy
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Validate organization profile policy
run: |
test -s LICENSE
test -s .github/CODEOWNERS
grep -Fq '* @emeisazam' .github/CODEOWNERS
test -s profile/README.md
Loading
Loading