Issue reviver #1544
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
# This workflow revives issues that are still referenced in the code, and may | |
# have been accidentally closed. | |
name: "Issue reviver" | |
"on": | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
issue_reviver: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
if: github.repository == 'google/gvisor' | |
- run: make run TARGETS="//tools/github" ARGS="-path=. revive" | |
if: github.repository == 'google/gvisor' | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_REPOSITORY: ${{ github.repository }} |