Skip to content

Commit 1ea4454

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

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed

.github/workflows/top-issues.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Top issues
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+
permissions:
12+
actions: read
13+
checks: read
14+
contents: read
15+
deployments: read
16+
issues: write
17+
discussions: read
18+
packages: read
19+
pages: read
20+
pull-requests: write
21+
repository-projects: read
22+
security-events: read
23+
statuses: read
24+
25+
jobs:
26+
top-issues:
27+
name: Top issues
28+
runs-on: ubuntu-latest
29+
steps:
30+
- name: Run top issues action
31+
uses: rickstaa/top-issues-action@v1
32+
env:
33+
github_token: ${{ secrets.GITHUB_TOKEN }}
34+
with:
35+
top_bugs: true
36+
top_features: true
37+
top_pull_requests: true

0 commit comments

Comments
 (0)