We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77df468 commit e59ff0fCopy full SHA for e59ff0f
workflows/clossing-issues.yml
@@ -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