Skip to content

Label stale issues and PRs #26

Label stale issues and PRs

Label stale issues and PRs #26

Workflow file for this run

# Temaplte from: https://github.com/hyperledger-labs/documentation-template
name: 'Label stale issues and PRs'
on:
schedule:
- cron: '30 1 * * *'
jobs:
stale:
runs-on: ubuntu-latest
steps:
- uses: actions/stale@v8
with:
stale-issue-message: 'This issue is stale because it has been open 30 days with no activity.'
stale-pr-message: 'This PR is stale because it has been open 30 days with no activity.'
stale-issue-label: 'stale'
stale-pr-label: 'stale'
days-before-stale: 30
days-before-close: -1
ignore-updates: true