From 75734963e58eb8407a3bbec7703f88d0ee8979d8 Mon Sep 17 00:00:00 2001 From: Toby Driscoll Date: Tue, 19 Nov 2019 14:48:20 -0500 Subject: [PATCH] Added tagbot --- .github/workflows/TagBot.yml | 12 ++++++++++++ 1 file changed, 12 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..1c2fc64 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,12 @@ +name: TagBot +on: + schedule: + - cron: 0 * * * * +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v1 + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file