Skip to content

Commit c6342e2

Browse files
authored
Take snapshot of open issues
1 parent 759b8b9 commit c6342e2

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Take snapshot of open issues
2+
on:
3+
schedule:
4+
# Daily at 8:20 UTC
5+
- cron: '0 8 1 * *'
6+
jobs:
7+
track_pr:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- run: |
11+
gh issue list --limit 1000 --search "is:issue is:open sort:reactions-+1-desc" --json number,url,reactionGroups,title,labels > $GITHUB_REPOSITORY.$(date +"%Y-%m-%d").json
12+
env:
13+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
14+
- uses: actions/upload-artifact@v3
15+
with:
16+
path: ./*.json
17+
retention-days: 1

0 commit comments

Comments
 (0)