From d2b25e4359b89cc013dce18a65ef8c1d309c86bd Mon Sep 17 00:00:00 2001 From: Frank Ray <52075808+FrankRay78@users.noreply.github.com> Date: Sat, 2 Mar 2024 17:16:33 +0000 Subject: [PATCH] Added top-issues-dashboard --- .github/workflows/top-issues-dashboard.yml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/top-issues-dashboard.yml diff --git a/.github/workflows/top-issues-dashboard.yml b/.github/workflows/top-issues-dashboard.yml new file mode 100644 index 0000000..050e2ff --- /dev/null +++ b/.github/workflows/top-issues-dashboard.yml @@ -0,0 +1,23 @@ +name: Top issues action. +on: [push] +#on: +# schedule: +# - cron: '0 0 */1 * *' + +jobs: + ShowAndLabelTopIssues: + name: Display and label top issues. + runs-on: ubuntu-latest + steps: + - name: Run top issues action + uses: rickstaa/top-issues-action@v1 + env: + github_token: ${{ secrets.GITHUB_TOKEN }} + with: + label: false + dashboard: true + dashboard_show_total_reactions: true + top_issues: true + top_bugs: true + top_features: true + top_pull_requests: true \ No newline at end of file