From 59705e23f168bb24e0b468548f58ec3b8b6c7464 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Thu, 5 Nov 2020 11:36:24 +0100 Subject: [PATCH] Update and rename main.yml to TagBot.yml --- .github/workflows/{main.yml => TagBot.yml} | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) rename .github/workflows/{main.yml => TagBot.yml} (55%) diff --git a/.github/workflows/main.yml b/.github/workflows/TagBot.yml similarity index 55% rename from .github/workflows/main.yml rename to .github/workflows/TagBot.yml index 479afc5a..29b15f58 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/TagBot.yml @@ -1,20 +1,19 @@ -# This GitHub action checks daily whether a new version of this package +# This GitHub action checks whether a new version of this package # has been registred in the official registry. # If so, it creates a new _release_: -# https://github.com/fonsp/Pluto.jl/releases +# https://github.com/fonsp/PlutoUI.jl/releases name: TagBot - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch on: - schedule: - - cron: '*/15 * * * *' + issue_comment: + types: + - created # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: TagBot: + if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' runs-on: [ubuntu-latest] steps: - uses: JuliaRegistries/TagBot@v1