Skip to content

Commit

Permalink
github: find top issues
Browse files Browse the repository at this point in the history
  • Loading branch information
adil192 committed Mar 29, 2024
1 parent ad677ed commit 8bd4fd8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/top-issues.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Top issues action.
on:
workflow_dispatch:
push:
paths:
- .github/workflows/top-issues.yml
schedule:
# every day at 10:50 am (random time to avoid spikes in GitHub Actions usage)
- cron: '50 10 * * *'

jobs:
top-issues:
name: Top issues
runs-on: ubuntu-latest
steps:
- name: Run top issues action
uses: rickstaa/top-issues-action@v1
env:
github_token: ${{ secrets.TOP_ISSUES_TOKEN }}
with:
top_bugs: true
top_features: true
top_pull_requests: true

0 comments on commit 8bd4fd8

Please sign in to comment.