Skip to content

Commit

Permalink
Operation count for stale issue
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jul 14, 2021
1 parent 1f2f0ab commit 186d9d2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/stale_issues.yml
Expand Up @@ -3,6 +3,11 @@ on:
schedule:
- cron: "30 1 * * *"
workflow_dispatch:
inputs:
operation_count:
description: 'Operation count'
required: true
default: '100'

jobs:
stale:
Expand Down Expand Up @@ -42,4 +47,4 @@ jobs:
only-labels: 'feedback'
days-before-stale: 14
days-before-close: 28
operations-per-run: 100
operations-per-run: ${{ github.event.inputs.operation_count }}"

0 comments on commit 186d9d2

Please sign in to comment.