From 3d222f30d78cc692ec3fbb3740399184775f0780 Mon Sep 17 00:00:00 2001 From: Alinson S Xavier Date: Mon, 16 Nov 2020 06:22:03 -0600 Subject: [PATCH] GitHub Actions: Add TagBot --- .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..d77d3a0 --- /dev/null +++ b/.github/workflows/tagbot.yml @@ -0,0 +1,11 @@ +name: TagBot +on: + schedule: + - cron: 0 * * * * +jobs: + TagBot: + runs-on: ubuntu-latest + steps: + - uses: JuliaRegistries/TagBot@v1 + with: + token: ${{ secrets.GITHUB_TOKEN }}