From 5b7d54e7a08a61a9d5d0042a5bd6ce6635afee18 Mon Sep 17 00:00:00 2001 From: yanavasileva Date: Mon, 17 Jun 2024 18:09:57 +0200 Subject: [PATCH] chore(workflows): add `stale` workflow (#299) camunda/team-automation-platform#147 --- .github/workflows/close-stale-issues.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/close-stale-issues.yml diff --git a/.github/workflows/close-stale-issues.yml b/.github/workflows/close-stale-issues.yml new file mode 100644 index 00000000..8710f98c --- /dev/null +++ b/.github/workflows/close-stale-issues.yml @@ -0,0 +1,14 @@ +# This workflow warns and then closes issues and PRs that have had no activity for a specified amount of time. +# +# You can adjust the behavior by modifying this file. +# For more information, see: +# https://github.com/actions/stale +name: 'Close stale issues and PRs' +on: + schedule: + - cron: '0 2 * * 2-6' + workflow_dispatch: # can be used to trigger the workflow manually + +jobs: + call-reusable-flow: + uses: camunda/automation-platform-github-actions/.github/workflows/close-stale-issues.yml@main