mirror of
https://github.com/httpie/cli.git
synced 2024-11-22 07:43:20 +01:00
47e9b99ba1
Bumps [actions/stale](https://github.com/actions/stale) from 7 to 8. - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/stale/compare/v7...v8) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
27 lines
659 B
YAML
27 lines
659 B
YAML
name: Mark stale pull requests
|
|
|
|
on: workflow_dispatch
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/stale@v8
|
|
with:
|
|
close-pr-message: 'Thanks for the pull request, but since it was stale for more than a 30 days we are closing it. If you want to work back on it, feel free to re-open it or create a new one.'
|
|
stale-pr-label: 'stale'
|
|
|
|
days-before-stale: -1
|
|
days-before-issue-stale: -1
|
|
days-before-pr-stale: 30
|
|
|
|
days-before-close: -1
|
|
days-before-issue-close: -1
|
|
days-before-pr-close: 0
|
|
|
|
operations-per-run: 300
|