Skip to content

Commit

Permalink
feat: add paginated top issue parser (#3041)
Browse files Browse the repository at this point in the history
  • Loading branch information
teolemon authored Sep 20, 2022
1 parent 6fb4fc9 commit 455b304
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/top-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Top issues action.
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: true
dashboard: true
dashboard_show_total_reactions: true
top_issues: true
top_bugs: true
top_features: true
top_pull_requests: true

0 comments on commit 455b304

Please sign in to comment.