Skip to content

Commit 8bd4fd8

Browse files
committed
github: find top issues
1 parent ad677ed commit 8bd4fd8

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/top-issues.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Top issues action.
2+
on:
3+
workflow_dispatch:
4+
push:
5+
paths:
6+
- .github/workflows/top-issues.yml
7+
schedule:
8+
# every day at 10:50 am (random time to avoid spikes in GitHub Actions usage)
9+
- cron: '50 10 * * *'
10+
11+
jobs:
12+
top-issues:
13+
name: Top issues
14+
runs-on: ubuntu-latest
15+
steps:
16+
- name: Run top issues action
17+
uses: rickstaa/top-issues-action@v1
18+
env:
19+
github_token: ${{ secrets.TOP_ISSUES_TOKEN }}
20+
with:
21+
top_bugs: true
22+
top_features: true
23+
top_pull_requests: true

0 commit comments

Comments
 (0)