From a3ae8c88f23ee0f058ce49a8c122d2f09533b1fe Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Mon, 29 Jan 2024 12:00:41 +0100 Subject: [PATCH] Create TagBot.yml --- .github/workflows/TagBot.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/TagBot.yml diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml new file mode 100644 index 0000000..392032d --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,19 @@ +name: TagBot + +on: + issue_comment: + types: + - created + workflow_dispatch: + schedule: + - cron: '0 * * * *' + +jobs: + TagBot: + if: github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' || github.actor == 'JuliaTagBot' + runs-on: [ubuntu-latest] + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + lookback: 30