From a449e3212a63368abc18453a5c511ad720cb2606 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Ra=CC=88ss?= Date: Fri, 13 Aug 2021 17:13:59 +0200 Subject: [PATCH] Add TagBot workflow with new draft release feature --- .github/workflows/TagBot.yml | 20 ++++++++++++++++++++ 1 file changed, 20 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 00000000..4bf74610 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,20 @@ +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 }} + with: + token: ${{ secrets.GITHUB_TOKEN }} + draft: true