mirror of
https://github.com/anuraghazra/github-readme-stats.git
synced 2025-01-12 13:41:40 +08:00
90ce468a1d
Bumps [rickstaa/top-issues-action](https://github.com/rickstaa/top-issues-action) from 1.3.29 to 1.3.32.
- [Release notes](https://github.com/rickstaa/top-issues-action/releases)
- [Commits](f31962cb26...c66e5d53ff
)
---
updated-dependencies:
- dependency-name: rickstaa/top-issues-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
54 lines
1.7 KiB
YAML
54 lines
1.7 KiB
YAML
name: Update top issues dashboard
|
|
on:
|
|
schedule:
|
|
# ┌───────────── minute (0 - 59)
|
|
# │ ┌───────────── hour (0 - 23)
|
|
# │ │ ┌───────────── day of the month (1 - 31)
|
|
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
|
|
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
# │ │ │ │ │
|
|
# * * * * *
|
|
- cron: "0 0 */3 * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
actions: read
|
|
checks: read
|
|
contents: read
|
|
deployments: read
|
|
issues: write
|
|
discussions: read
|
|
packages: read
|
|
pages: read
|
|
pull-requests: write
|
|
repository-projects: read
|
|
security-events: read
|
|
statuses: read
|
|
|
|
jobs:
|
|
showAndLabelTopIssues:
|
|
if: github.repository == 'anuraghazra/github-readme-stats'
|
|
name: Update top issues Dashboard.
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Run top issues action
|
|
uses: rickstaa/top-issues-action@c66e5d53ffc26f7ae020ff8454582884d4af4cdb # v1.3.32
|
|
env:
|
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
top_list_size: 10
|
|
filter: "1772"
|
|
label: true
|
|
dashboard: true
|
|
dashboard_show_total_reactions: true
|
|
top_issues: true
|
|
top_bugs: true
|
|
top_features: true
|
|
top_pull_requests: true
|
|
custom_pull_requests_label: themes
|
|
top_custom_pull_requests_label: ":star: top themes"
|
|
top_custom_pull_requests_label_description: Top themes
|
|
top_custom_pull_requests_label_colour: "#A23599"
|