Files
containers/.github/workflows/clossing-issues.yml
Fran Mulero 87370f26d6 [bitnami/containers] GitHub actions hardening (#52441)
* GitHub actions hardening

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Allow manual triggering in scheduled jobs

Signed-off-by: Fran Mulero <fmulero@vmware.com>

* Use env var instead of using github expressions

Signed-off-by: Fran Mulero <fmulero@vmware.com>

---------

Signed-off-by: Fran Mulero <fmulero@vmware.com>
2023-11-08 17:06:12 +01:00

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@1160a2240286f5da8ec72b1c0816ce2481aabf84
with:
any-of-labels: 'solved'
stale-issue-label: 'solved'
days-before-stale: 0
days-before-close: 0
repo-token: ${{ secrets.BITNAMI_BOT_TOKEN }}