mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-09-18 01:19:24 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [actions/stale](https://github.com/actions/stale) from 9.1.0 to 10.0.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](5bef64f19d...3a9db7e6a4
)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-version: 10.0.0
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
41 lines
1.4 KiB
YAML
41 lines
1.4 KiB
YAML
name: Close stale issues
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "30 0 * * *"
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- name: Harden Runner
|
|
uses: step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: 30 days stale issues
|
|
uses: actions/stale@3a9db7e6a41a89f618792c92c0e97cc736e1b13f # v10.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
days-before-stale: 30
|
|
days-before-close: 7
|
|
stale-issue-message: >
|
|
This issue has been automatically marked as stale because it has had no recent activity.
|
|
It will be closed if no further activity occurs. Thank you for your contributions.
|
|
close-issue-message: >
|
|
This issue has been automatically closed because it has had no recent activity after being marked as stale.
|
|
Please reopen if you need further assistance.
|
|
stale-issue-label: "Stale"
|
|
remove-stale-when-updated: true
|
|
only-issue-labels: "more-info-needed"
|
|
days-before-pr-stale: -1 # Prevents PRs from being marked as stale
|
|
days-before-pr-close: -1 # Prevents PRs from being closed
|
|
start-date: "2024-07-06T00:00:00Z" # ISO 8601 Format
|