Truncated dropdown in desktop mode #125
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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_show_total_reactions: true | |
top_issues: true | |
dashboard_title: 👍 Top Issues Dashboard | |
top_bugs: true | |
top_features: true | |
top_pull_requests: true |