Skip to content

Commit e59ff0f

Browse files
authoredFeb 10, 2025··
chore(workflows): Follow up #92, add missing workflow (#93)
Signed-off-by: Fran Mulero <[email protected]>
1 parent 77df468 commit e59ff0f

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed
 

‎workflows/clossing-issues.yml

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Copyright Broadcom, Inc. All Rights Reserved.
2+
# SPDX-License-Identifier: APACHE-2.0
3+
4+
# NOTE: This workflow is maintained in the https://github.com/bitnami/support repository
5+
name: '[Support] Close Solved issues'
6+
on:
7+
schedule:
8+
# Hourly
9+
- cron: '0 * * * *'
10+
# Remove all permissions by default. Actions are performed by Bitnami Bot
11+
permissions: {}
12+
jobs:
13+
stale:
14+
runs-on: ubuntu-latest
15+
steps:
16+
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639
17+
with:
18+
any-of-labels: 'solved'
19+
stale-issue-label: 'solved'
20+
days-before-stale: 0
21+
days-before-close: 0
22+
repo-token: ${{ secrets.BITNAMI_SUPPORT_BOARD_TOKEN }}

0 commit comments

Comments
 (0)
Please sign in to comment.