From 498d75a40433fe7256e2eede9c15848d615035f2 Mon Sep 17 00:00:00 2001 From: Emilien Escalle Date: Tue, 26 Mar 2024 15:01:07 +0100 Subject: [PATCH] ci: add stale workflow Signed-off-by: Emilien Escalle --- .github/workflows/main-ci.yml | 1 + .github/workflows/stale.yml | 9 +++++++++ 2 files changed, 10 insertions(+) create mode 100644 .github/workflows/stale.yml diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 7494764..7fc48ca 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -3,6 +3,7 @@ name: Internal - Main - Continuous Integration on: push: branches: [main] + tags: ["*"] concurrency: group: ${{ github.workflow }}-${{ github.ref }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100644 index 0000000..9d67193 --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,9 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "30 1 * * *" + +jobs: + main: + uses: hoverkraft-tech/ci-github-common/.github/workflows/stale.yml@0.12.0 \ No newline at end of file