teams: Add cilium-io team for cilium.io repo reviews #32
Workflow file for this run
This file contains hidden or 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
name: Lint | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
permissions: read-all | |
jobs: | |
lint: | |
name: Generate | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | |
with: | |
persist-credentials: false | |
fetch-depth: '0' | |
- name: Generate reviewers | |
run: | | |
./tools/generate-reviewers.sh | |
if ! git diff --exit-code; then | |
echo "Run './tools/generate-reviewers.sh' and submit your changes" | |
exit 1 | |
fi | |
- name: Generate code owners | |
run: | | |
./tools/generate-codeowners.sh | |
if ! git diff --exit-code; then | |
echo "Run './tools/generate-codeowners.sh' and submit your changes" | |
exit 1 | |
fi |