mirror of
https://github.com/projectdiscovery/nuclei.git
synced 2025-12-17 16:25:24 +00:00
Bumps the workflows group with 2 updates in the / directory: [actions/checkout](https://github.com/actions/checkout) and [actions/stale](https://github.com/actions/stale). Updates `actions/checkout` from 4 to 5 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v5) Updates `actions/stale` from 9 to 10 - [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/v9...v10) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflows - dependency-name: actions/stale dependency-version: '10' dependency-type: direct:production update-type: version-update:semver-major dependency-group: workflows ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
1.6 KiB
YAML
42 lines
1.6 KiB
YAML
name: 💤 Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 0 * * 0' # Weekly
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
actions: write
|
|
contents: write # only for delete-branch option
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@v10
|
|
with:
|
|
days-before-stale: 90
|
|
days-before-close: 7
|
|
stale-issue-label: "Status: Stale"
|
|
stale-pr-label: "Status: Stale"
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as stale because it has not
|
|
had recent activity. It will be closed in 7 days if no further
|
|
activity occurs. Thank you for your contributions!
|
|
stale-pr-message: >
|
|
This pull request has been automatically marked as stale due to
|
|
inactivity. It will be closed in 7 days if no further activity
|
|
occurs. Please update if you wish to keep it open.
|
|
close-issue-message: >
|
|
This issue has been automatically closed due to inactivity. If you
|
|
think this is a mistake or would like to continue the discussion,
|
|
please comment or feel free to reopen it.
|
|
close-pr-message: >
|
|
This pull request has been automatically closed due to inactivity.
|
|
If you think this is a mistake or would like to continue working on
|
|
it, please comment or feel free to reopen it.
|
|
close-issue-label: "Status: Abandoned"
|
|
close-pr-label: "Status: Abandoned"
|
|
exempt-issue-labels: "Status: Abandoned"
|
|
exempt-pr-labels: "Status: Abandoned"
|