ci: add top-issues-dashboard action

This commit adds the top issues dashboard action which creates a issue displaying the top issues of the week.
This commit is contained in:
Rick Staa 2022-08-18 11:31:45 +02:00
parent dd5a41d696
commit 663fbae49a

View file

@ -0,0 +1,20 @@
name: Update top issues dashboard.
on:
schedule:
- cron: "0 0 */7 * *"
jobs:
showAndLabelTopIssues:
name: Update top issues Dashboard.
runs-on: ubuntu-latest
steps:
- name: Run top issues action
uses: rickstaa/top-issues-action@v1
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
label: false
dashboard: true
top_issues: true
top_bugs: true
top_features: true
top_pull_requests: true