mirror of
https://github.com/tenrok/axios.git
synced 2026-05-21 13:24:11 +03:00
659eeaf67c
Bumps [actions/stale](https://github.com/actions/stale) from 5 to 6. - [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/v5...v6) --- updated-dependencies: - dependency-name: actions/stale dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jay <jasonsaayman@gmail.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
name: 'Close Stale'
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 1'
|
|
|
|
jobs:
|
|
stale:
|
|
permissions:
|
|
issues: write # for actions/stale to close stale issues
|
|
pull-requests: write # for actions/stale to close stale PRs
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Close Stale Issues
|
|
uses: actions/stale@v6
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
stale-issue-message: |
|
|
Hello! :wave:
|
|
|
|
This issue is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the issue will be closed in a few days.
|
|
|
|
Thanks.
|
|
stale-pr-message: |
|
|
Hello! :wave:
|
|
|
|
This pull request is being automatically marked as stale because it has not been updated in a while. Please confirm that the issue is still present and reproducible. If no updates or new comments are received the pull request will be closed in a few days.
|
|
|
|
Thanks.
|
|
stale-issue-label: 'status:stale'
|
|
stale-pr-label: 'status:stale'
|
|
only-labels: 'status:more info needed'
|
|
days-before-stale: 30
|
|
days-before-close: 14
|