From 8bd4fd86ba8cfed547e5712ff5de01d8efe39aa4 Mon Sep 17 00:00:00 2001 From: Adil Hanney Date: Fri, 29 Mar 2024 22:38:14 +0000 Subject: [PATCH] github: find top issues --- .github/workflows/top-issues.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 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 000000000..5dbda29e8 --- /dev/null +++ b/.github/workflows/top-issues.yml @@ -0,0 +1,23 @@ +name: Top issues action. +on: + workflow_dispatch: + push: + paths: + - .github/workflows/top-issues.yml + schedule: + # every day at 10:50 am (random time to avoid spikes in GitHub Actions usage) + - cron: '50 10 * * *' + +jobs: + top-issues: + name: Top issues + runs-on: ubuntu-latest + steps: + - name: Run top issues action + uses: rickstaa/top-issues-action@v1 + env: + github_token: ${{ secrets.TOP_ISSUES_TOKEN }} + with: + top_bugs: true + top_features: true + top_pull_requests: true