From 6e032088d1fe7fc3d3a7ca8368b9aa49312aac72 Mon Sep 17 00:00:00 2001 From: "Gregory L. Wagner" Date: Mon, 20 Jul 2026 16:33:59 +0000 Subject: [PATCH] Install TagBot for package releases --- .github/workflows/TagBot.yml | 21 +++++++++++++++++++++ 1 file changed, 21 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..917d8c5 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,21 @@ +name: TagBot + +on: + issue_comment: + types: + - created + workflow_dispatch: + inputs: + lookback: + description: "[DEPRECATED] No longer has any effect" + default: "3" + +jobs: + TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@14d7645453716d7a2f09b1da0504a024f97462a1 # v1.25.10 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.DOCUMENTER_KEY }}