diff options
author | Adin Scannell <ascannell@google.com> | 2020-08-03 11:20:31 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-08-03 11:22:52 -0700 |
commit | e3c349d21957edbc124647e122f5d07e2e853690 (patch) | |
tree | e4856b1eee90bc3058b2b0ad5a63bd0d3ce53ad7 /.github/workflows/issue_reviver.yml | |
parent | 10f6c41bbd5dbc84c57aedb4cb86e7dfd59a8114 (diff) |
Fix syntax error in issue_reviver.
PiperOrigin-RevId: 324642975
Diffstat (limited to '.github/workflows/issue_reviver.yml')
-rw-r--r-- | .github/workflows/issue_reviver.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/issue_reviver.yml b/.github/workflows/issue_reviver.yml index e68e15270..2b399a3f2 100644 --- a/.github/workflows/issue_reviver.yml +++ b/.github/workflows/issue_reviver.yml @@ -8,9 +8,9 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - if: github.repository == "google/gvisor" + if: github.repository == 'google/gvisor' - run: make run TARGETS="//tools/issue_reviver" - if: github.repository == "google/gvisor" + if: github.repository == 'google/gvisor' env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }} |