mirror of
https://github.com/submariner-io/submariner-charts.git
synced 2026-09-20 18:00:35 +00:00
Bumps the github-actions group with 4 updates: [depends-on/depends-on-action](https://github.com/depends-on/depends-on-action), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [actions/stale](https://github.com/actions/stale). Updates `depends-on/depends-on-action` from 0.16.0 to 0.17.0 - [Release notes](https://github.com/depends-on/depends-on-action/releases) - [Commits](https://github.com/depends-on/depends-on-action/compare/826c144163ac67bf08347590a5f81afd45da63ca...c7ac9a6932a7069e83aef80c202d9f60f91e43fd) Updates `actions/checkout` from 7.0.0 to 7.0.1 - [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/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1) Updates `actions/setup-python` from 6.3.0 to 7.0.0 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](https://github.com/actions/setup-python/compare/ece7cb06caefa5fff74198d8649806c4678c61a1...5fda3b95a4ea91299a34e894583c3862153e4b97) Updates `actions/stale` from 10.3.0 to 11.0.0 - [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/eb5cf3af3ac0a1aa4c9c45633dd1ae542a27a899...4391f3da665fdf50b6810c1a66712fb9ba21aa93) --- updated-dependencies: - dependency-name: depends-on/depends-on-action dependency-version: 0.17.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/checkout dependency-version: 7.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: actions/setup-python dependency-version: 7.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/stale dependency-version: 11.0.0 dependency-type: direct:production update-type: version-update:semver-major 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@4391f3da665fdf50b6810c1a66712fb9ba21aa93
|
|
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.
|