Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/__call-top-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
---
# Create a top issues dashboard

name: Top issues (called)
permissions: {}

on:
workflow_call:

jobs:
top-issues:
name: Top issues
permissions:
contents: read
issues: write
runs-on: ubuntu-latest
steps:
- name: Top issues action
uses: rickstaa/top-issues-action@7e8dda5d5ae3087670f9094b9724a9a091fc3ba1 # v1.3.101
env:
github_token: ${{ secrets.GITHUB_TOKEN }}
with:
dashboard: true
dashboard_show_total_reactions: true
label: false
top_bugs: false
top_features: false
top_issues: true
top_list_size: 10
top_pull_requests: true
2 changes: 2 additions & 0 deletions .github/workflows/__global-replicator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ jobs:
.github/workflows/pull-requests.yml,
.github/workflows/python-flake8.yml,
.github/workflows/release-notifier.yml,
.github/workflows/top_issues.yml,
.github/workflows/update-changelog.yml,
.github/workflows/update-docs.yml,
.github/workflows/update-flathub-repo.yml,
Expand Down Expand Up @@ -106,6 +107,7 @@ jobs:
.github/semantic.yml,
.github/workflows/_codeql.yml,
.github/workflows/_common-lint.yml
.github/workflows/_top-issues.yml
topics_to_include: ''
exclude_forked: false
destination: ''
Expand Down
27 changes: 27 additions & 0 deletions .github/workflows/_top-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# This workflow is centrally managed in https://github.com/LizardByte/.github/
# Don't make changes to this file in this repo as they will be overwritten with changes made to the same file in
# the above-mentioned repo.

# Create a top issues dashboard

name: Top issues
permissions: {}

on:
schedule:
- cron: '0 6/12 * * *'
workflow_dispatch:

concurrency:
group: 'top-issues'
cancel-in-progress: true

jobs:
top-issues:
name: Top issues
uses: LizardByte/.github/.github/workflows/__call-top-issues.yml@master
if: github.repository_owner == 'LizardByte'
permissions:
contents: read
issues: write
Loading