gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/.github/workflows/issue_reviver.yml (about) 1 # This workflow revives issues that are still referenced in the code, and may 2 # have been accidentally closed. 3 name: "Issue reviver" 4 "on": 5 schedule: 6 - cron: '0 0 * * *' 7 8 jobs: 9 issue_reviver: 10 runs-on: ubuntu-latest 11 steps: 12 - uses: actions/checkout@v3 13 if: github.repository == 'google/gvisor' 14 - run: make run TARGETS="//tools/github" ARGS="-path=. revive" 15 if: github.repository == 'google/gvisor' 16 env: 17 GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} 18 GITHUB_REPOSITORY: ${{ github.repository }}