-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #48 from bitnami/repo-sync/support/default
🔄 synced file(s) with bitnami/support
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# Copyright Broadcom, Inc. All Rights Reserved. | ||
# SPDX-License-Identifier: APACHE-2.0 | ||
|
||
# NOTE: This workflow is maintained in the https://github.com/bitnami/support repository | ||
name: '[Support] Close Solved issues' | ||
on: | ||
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@5bef64f19d7facfb25b37b414482c7164d639639 | ||
with: | ||
any-of-labels: 'solved' | ||
stale-issue-label: 'solved' | ||
days-before-stale: 0 | ||
days-before-close: 0 | ||
repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }} |