mirror of
https://github.com/bitnami/containers.git
synced 2026-02-12 23:27:17 +08:00
Bumps [actions/stale](https://github.com/actions/stale) from 8.0.0 to 9.0.0.
- [Release notes](https://github.com/actions/stale/releases)
- [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
- [Commits](1160a22402...28ca103628)
---
updated-dependencies:
- dependency-name: actions/stale
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
22 lines
590 B
YAML
22 lines
590 B
YAML
# Copyright VMware, Inc.
|
|
# SPDX-License-Identifier: APACHE-2.0
|
|
|
|
name: '[Support] Close Solved issues'
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
# Hourly
|
|
- cron: '0 * * * *'
|
|
# Remove all permissions by default. Actions are performed by Bitnami Bot
|
|
permissions: {}
|
|
jobs:
|
|
stale:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/stale@28ca1036281a5e5922ead5184a1bbf96e5fc984e
|
|
with:
|
|
any-of-labels: 'solved'
|
|
stale-issue-label: 'solved'
|
|
days-before-stale: 0
|
|
days-before-close: 0
|
|
repo-token: ${{ secrets.BITNAMI_BOT_TOKEN }} |