From bd2fa48a0c55ff49356e5f528e688ce60ffad2e6 Mon Sep 17 00:00:00 2001 From: Dae Woo Kim Date: Fri, 31 Jan 2025 09:29:09 -0600 Subject: [PATCH] update TagBot.yml --- .github/workflows/TagBot.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/TagBot.yml b/.github/workflows/TagBot.yml index 2bacdb8..9880dd0 100644 --- a/.github/workflows/TagBot.yml +++ b/.github/workflows/TagBot.yml @@ -3,6 +3,7 @@ on: issue_comment: types: - created + repository_dispatch: workflow_dispatch: inputs: lookback: @@ -22,10 +23,13 @@ permissions: statuses: read jobs: TagBot: - if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' || (github.event_name == 'repository_dispatch' && github.event.client_payload.repository == 'HolyLab/HolyLabRegistry') runs-on: ubuntu-latest steps: - uses: JuliaRegistries/TagBot@v1 with: token: ${{ secrets.GITHUB_TOKEN }} + # Edit the following line to reflect the actual name of the GitHub Secret containing your private key ssh: ${{ secrets.DOCUMENTER_KEY }} + # ssh: ${{ secrets.NAME_OF_MY_SSH_PRIVATE_KEY_SECRET }} + registry: HolyLab/HolyLabRegistry \ No newline at end of file