Skip to content

feat: added serviceMonitor prometheusCRD dependencies #2

feat: added serviceMonitor prometheusCRD dependencies

feat: added serviceMonitor prometheusCRD dependencies #2

Workflow file for this run

name: Sync Readme
on:
push:
branches:
- master
paths:
- 'README.md'
jobs:
build:
permissions:
contents: write # for git push
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: |
cp -f README.md ${{ runner.temp }}/README.md
- uses: actions/checkout@v4
with:
ref: gh-pages
- 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 master"
git push