Skip to content

Commit

Permalink
Merge pull request #2921 from Flow-Launcher/add_top_issues_workflow
Browse files Browse the repository at this point in the history
Create Top-Ranking Issues workflow
  • Loading branch information
jjw24 authored Aug 23, 2024
2 parents 1911138 + 7484487 commit 4fb0a1f
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/top-ranking-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Top-Ranking Issues
on:
schedule:
- cron: '0 0 */1 * *'
workflow_dispatch:

jobs:
ShowAndLabelTopIssues:
name: Display and label top issues.
runs-on: ubuntu-latest
steps:
- name: Top Issues action
uses: rickstaa/[email protected]
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
with:
dashboard: true
dashboard_show_total_reactions: true
top_list_size: 10
top_features: true
top_bugs: true
dashboard_title: Top-Ranking Issues 📈
dashboard_label: ⭐ Dashboard
hide_dashboard_footer: true
top_issues: false

0 comments on commit 4fb0a1f

Please sign in to comment.