From 8e06f1426796093eb4fc3ac11ad4688789cf875e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaroslav=20Novotn=C3=BD?= <62177414+yardexx@users.noreply.github.com> Date: Wed, 12 Jun 2024 12:50:41 +0200 Subject: [PATCH] ci: add issue watcher --- .github/workflows/issue_watcher.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .github/workflows/issue_watcher.yml diff --git a/.github/workflows/issue_watcher.yml b/.github/workflows/issue_watcher.yml new file mode 100644 index 0000000..61f8c6d --- /dev/null +++ b/.github/workflows/issue_watcher.yml @@ -0,0 +1,11 @@ +name: Issue watcher +on: + workflow_dispatch: + schedule: + # Date follows the cron syntax: https://en.wikipedia.org/wiki/Cron + # Every Monday at 6:30 AM + - cron: '30 6 * * 1' + +jobs: + check_issues: + uses: talsec/github-workflows/.github/workflows/issue_watcher.yml@master