From 7bbbc4abd09b92f622a962574a1130ae0299a7f6 Mon Sep 17 00:00:00 2001 From: Pierre Slamich Date: Tue, 23 Jul 2024 10:45:04 +0200 Subject: [PATCH] ci: Create top-issues.yml --- .github/workflows/top-issues.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/top-issues.yml diff --git a/.github/workflows/top-issues.yml b/.github/workflows/top-issues.yml new file mode 100644 index 00000000..e93e722b --- /dev/null +++ b/.github/workflows/top-issues.yml @@ -0,0 +1,27 @@ +name: Top issues action. +#on: +# schedule: +# - cron: '0 0 */1 * *' +on: + issues: + types: [opened, transferred] + +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: true + dashboard: true + dashboard_title: 👍 Top Issues Dashboard + dashboard_show_total_reactions: true + top_issues: true + top_bugs: true + top_features: true + top_pull_requests: true + top_list_size: 20