summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/issue_reviver.yml
blob: 5e0254111c300d013be8c87d7819ae960884a0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
name: "Issue reviver"
on:
  schedule:
    - cron: '0 0 * * *'

jobs:
  label:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v2
    - run: make run TARGETS="//tools/issue_reviver"
      env:
        GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
        GITHUB_REPOSITORY: ${{ github.repository }}