Add proper handling for common and pod specific labels and annotation… #13
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-readme | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'README.md' | |
jobs: | |
build: | |
permissions: | |
contents: write # for git push | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: copy README.md | |
run: | | |
cp -f README.md ${{ runner.temp }}/README.md | |
- name: Checkout gh-pages | |
uses: actions/checkout@v4 | |
with: | |
ref: gh-pages | |
- name: commit | |
run: | | |
cp -f ${{ runner.temp }}/README.md . | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
git add README.md | |
git commit --signoff -m "Sync README from main" | |
git push |