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