mirror of
https://github.com/pi-hole/docs.git
synced 2025-12-25 21:49:35 +00:00
Bumps the github_action-dependencies group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/setup-node](https://github.com/actions/setup-node) and [actions/stale](https://github.com/actions/stale). Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](1af3b93b68...8e8c483db8) Updates `actions/setup-node` from 6.0.0 to 6.1.0 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](2028fbc5c2...395ad32622) Updates `actions/stale` from 10.1.0 to 10.1.1 - [Release notes](https://github.com/actions/stale/releases) - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md) - [Commits](5f858e3efb...997185467f) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github_action-dependencies - dependency-name: actions/setup-node dependency-version: 6.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github_action-dependencies - dependency-name: actions/stale dependency-version: 10.1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github_action-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
name: Close stale PR
|
|
# This action will add a `stale` label and close immediately every PR that meets the following conditions:
|
|
# - it is already marked with "merge conflict" label
|
|
# - there was no update/comment on the PR in the last 30 days.
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 10 * * *"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
|
|
steps:
|
|
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d #v10.1.1
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
# Do not automatically mark PR/issue as stale
|
|
days-before-stale: -1
|
|
# Override 'days-before-stale' for PR only
|
|
days-before-pr-stale: 30
|
|
# Close PRs immediately, after marking them 'stale'
|
|
days-before-pr-close: 0
|
|
# only run the action on merge conflict PR
|
|
any-of-labels: "Merge Conflict"
|
|
exempt-pr-labels: "Internal, Never Stale, On Hold, WIP"
|
|
exempt-all-pr-assignees: true
|
|
operations-per-run: 300
|
|
stale-pr-message: ""
|
|
close-pr-message: "Existing merge conflicts have not been addressed. This PR is considered abandoned."
|