From b4c788f99eb3ce57ff1e9903694f7e4738a1b338 Mon Sep 17 00:00:00 2001 From: Iago Leal de Freitas Date: Fri, 22 May 2020 18:41:45 -0300 Subject: [PATCH] Tagbot: github action for automatic tagging releases --- .github/workflows/TagBot.yml | 11 +++++++++++ 1 file changed, 11 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..dd911f3 --- /dev/null +++ b/.github/workflows/TagBot.yml @@ -0,0 +1,11 @@ +name: TagBot +on: + schedule: + - cron: 0 0 * * * +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}