From 32cc4a8c50faffc74460c8b3c6eb8c7e10be4073 Mon Sep 17 00:00:00 2001 From: Martin M Date: Wed, 18 Oct 2023 13:17:14 +0200 Subject: [PATCH] Update checkArchived.yml - limit to repository --- .github/workflows/checkArchived.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/checkArchived.yml b/.github/workflows/checkArchived.yml index 38b9937e4..a8ac90929 100644 --- a/.github/workflows/checkArchived.yml +++ b/.github/workflows/checkArchived.yml @@ -1,6 +1,8 @@ name: Check archived repostories on: + workflow_dispatch: + schedule: # * is a special character in YAML, so you have to quote this string # every sunday at 3:33 @@ -8,6 +10,10 @@ on: jobs: check: + name: check archived + if: | + github.repository == 'ioBroker/ioBroker.repositories' + runs-on: ubuntu-latest steps: - uses: actions/checkout@v4