Skip to content

Commit

Permalink
Update dormant.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
phw198 authored Oct 16, 2021
1 parent 072ff30 commit 0a81d40
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/dormant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ name: Mark dormant issues and pull requests

on:
workflow_dispatch:
inputs:
test-run:
description: 'Dry run only (y/n)?'
required: false
default: 'y'
schedule:
- cron: '30 8 * * *'

Expand All @@ -20,7 +25,7 @@ jobs:
steps:
- uses: actions/stale@v4
with:
debug-only: true
debug-only: github.event.inputs.test-run == 'y' #true
repo-token: ${{ secrets.GITHUB_TOKEN }}
days-before-pr-stale: -1
days-before-issue-stale: 30
Expand Down

0 comments on commit 0a81d40

Please sign in to comment.