mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 20:20:35 +00:00
Bumps the github-actions group with 1 update: [actions/stale](https://github.com/actions/stale). Updates `actions/stale` from 816d9db1aba399a7f70277f1a2b01a4d21497fdd to f78de9780efb7a789cf4745957fa3374cbb94fd5 - [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/816d9db1aba399a7f70277f1a2b01a4d21497fdd...f78de9780efb7a789cf4745957fa3374cbb94fd5) --- updated-dependencies: - dependency-name: actions/stale dependency-version: f78de9780efb7a789cf4745957fa3374cbb94fd5 dependency-type: direct:production dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
33 lines
1.0 KiB
YAML
33 lines
1.0 KiB
YAML
---
|
|
name: Stale
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 0 * * *"
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
stale:
|
|
name: Close Stale Issues and PRs
|
|
if: github.repository_owner == 'submariner-io'
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
issues: write
|
|
pull-requests: write
|
|
steps:
|
|
- uses: actions/stale@f78de9780efb7a789cf4745957fa3374cbb94fd5
|
|
with:
|
|
days-before-issue-stale: 120
|
|
days-before-pr-stale: 14
|
|
exempt-issue-labels: 'confirmed,security'
|
|
exempt-pr-labels: 'confirmed,security'
|
|
stale-issue-label: 'stale'
|
|
stale-issue-message: |
|
|
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further
|
|
activity occurs. Thank you for your contributions.
|
|
stale-pr-label: 'stale'
|
|
stale-pr-message: |
|
|
This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further
|
|
activity occurs. Thank you for your contributions.
|