--- name: Sync repo files on: schedule: - cron: '44 17 * * *' workflow_dispatch: {} permissions: contents: read jobs: repo_sync: runs-on: ubuntu-latest if: github.repository_owner == 'prometheus' container: image: quay.io/prometheus/golang-builder steps: - uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 with: persist-credentials: false - run: ./scripts/sync_repo_files.sh env: GITHUB_TOKEN: ${{ secrets.PROMBOT_GITHUB_TOKEN }}