Skip to content

Commit

Permalink
feature(github): cache github issues status in S3
Browse files Browse the repository at this point in the history
  • Loading branch information
fruch committed Jun 20, 2024
1 parent e7bde59 commit c48d2dd
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/cache-issues.yaml
Original file line number Diff line number Diff line change
@@ -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 }}

0 comments on commit c48d2dd

Please sign in to comment.