From d9f28a8d0d73c2a5b8d8a65856cab5ebb2be9bbf Mon Sep 17 00:00:00 2001 From: Will Tebbutt <3628294+willtebbutt@users.noreply.github.com> Date: Fri, 29 Aug 2025 19:21:43 +0100 Subject: [PATCH] Update TagBot.yml --- .github/workflows/TagBot.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index d77d3a0..e6077ae 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -1,11 +1,18 @@ name: TagBot on: - schedule: - - cron: 0 * * * * + issue_comment: + types: + - created + workflow_dispatch: + inputs: + lookback: + default: "3" jobs: TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' runs-on: ubuntu-latest steps: - uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.SSH_KEY_PRIV }}