mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-15 17:51:20 +00:00
596320c404
Bumps [cbrgm/cleanup-stale-branches-action](https://github.com/cbrgm/cleanup-stale-branches-action) from 1.1.21 to 1.1.22.
- [Release notes](https://github.com/cbrgm/cleanup-stale-branches-action/releases)
- [Commits](07d311426e...c5e901b253
)
---
updated-dependencies:
- dependency-name: cbrgm/cleanup-stale-branches-action
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
20 lines
621 B
YAML
20 lines
621 B
YAML
name: Cleanup Stale Branches
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 0 * * *' # This schedule runs the workflow at midnight every day
|
|
|
|
jobs:
|
|
cleanup-stale-branches:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cleanup Stale Branches
|
|
uses: cbrgm/cleanup-stale-branches-action@c5e901b253cd85f48f3ff32a5a68bc0f5ee2ff65 # v1.1.22
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
repository: ${{ github.repository }}
|
|
allowed-prefixes: "dependabot/,temp-cherry-pick-,cherry-pick-"
|
|
last-commit-age-days: 7
|
|
dry-run: false
|
|
rate-limit: true
|