diff --git a/.github/workflows/cache-issues.yaml b/.github/workflows/cache-issues.yaml new file mode 100644 index 00000000000..b84332b0034 --- /dev/null +++ b/.github/workflows/cache-issues.yaml @@ -0,0 +1,19 @@ +name: Report remaining open issues +on: + schedule: + # Daily at 8:20 UTC + - cron: '20 8 * * *' + pull_request: + branches: + - master + push: + branches: + - master +jobs: + track_pr: + runs-on: ubuntu-latest + steps: + - run: | + gh issue list --state all --json number,state,labels --limit 30000 --template '{{range .}}{{.number}},{{.state}},{{range .labels}}{{.name}} {{end}}' --repo scylladb/scylladb + env: + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}