align with openyurt charts refs/heads/master from commit a9eb9c604bed… #145
This file contains 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: 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 |