We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad677ed commit 8bd4fd8Copy full SHA for 8bd4fd8
.github/workflows/top-issues.yml
@@ -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