From 307298f09208205b2dad86b803c457e5145397a3 Mon Sep 17 00:00:00 2001 From: Takafumi Arakaki Date: Mon, 27 Jul 2020 19:30:37 -0700 Subject: [PATCH] Setup 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..dfe1825 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,16 @@ +name: TagBot +on: + schedule: + - cron: 0 0 * * * + push: + branches: + - actions/trigger/TagBot + workflow_dispatch: +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} + ssh: ${{ secrets.SSH_KEY }}