File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change
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
You can’t perform that action at this time.
0 commit comments