diff options
Diffstat (limited to '.github/workflows/issue_reviver.yml')
-rw-r--r-- | .github/workflows/issue_reviver.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/issue_reviver.yml b/.github/workflows/issue_reviver.yml new file mode 100644 index 000000000..2b399a3f2 --- /dev/null +++ b/.github/workflows/issue_reviver.yml @@ -0,0 +1,16 @@ +name: "Issue reviver" +on: + schedule: + - cron: '0 0 * * *' + +jobs: + issue_reviver: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + if: github.repository == 'google/gvisor' + - run: make run TARGETS="//tools/issue_reviver" + if: github.repository == 'google/gvisor' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + GITHUB_REPOSITORY: ${{ github.repository }} |