Skip to content

align with charts yurt-dashboard from commit 9391a0eb936bfee04a61ab17… #111

align with charts yurt-dashboard from commit 9391a0eb936bfee04a61ab17…

align with charts yurt-dashboard from commit 9391a0eb936bfee04a61ab17… #111

name: Sync CODEOWNERS
on:
push:
branches:
- 'main'
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- run: |
./scripts/check-codeowners.sh > ${{ runner.temp }}/CODEOWNERS
- name: Checkout Code
uses: actions/checkout@v2
with:
ref: main
- name: install yq
run: |
sudo snap install yq
- name: commit codeowners
run: |
cp -f ${{ runner.temp }}/CODEOWNERS .github/CODEOWNERS
git config user.name "$GITHUB_ACTOR"
git config user.email "[email protected]"
git add .github/CODEOWNERS
git commit --signoff -m "change code owners"
git push