From e36341f4eade13b64436e6a596bd9fd485d21bb3 Mon Sep 17 00:00:00 2001 From: James Rising Date: Mon, 14 Dec 2020 11:33:28 -0500 Subject: [PATCH] try tagbot --- .github/workflows/TagBot.yml | 16 ++++++++++++++++ 1 file changed, 16 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..3560011 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,16 @@ +name: TagBot +on: + issue_comment: + types: + - created + workflow_dispatch: +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.DOCUMENTER_KEY }} +