We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78d9b63 commit e647fffCopy full SHA for e647fff
.github/workflows/RegisterAction.yml
@@ -0,0 +1,14 @@
1
+name: RegisterAction
2
+on:
3
+ workflow_dispatch:
4
+ inputs:
5
+ version:
6
+ description: Version to register or component to bump
7
+ required: true
8
+jobs:
9
+ register:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: julia-actions/RegisterAction@latest
13
+ with:
14
+ token: ${{ secrets.GITHUB_TOKEN }}
.github/workflows/TagBot.yml
@@ -1,9 +1,12 @@
name: TagBot
on:
- schedule:
- - cron: 0 * * * *
+ issue_comment:
+ types:
+ - created
jobs:
TagBot:
+ if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
runs-on: ubuntu-latest
steps:
- uses: JuliaRegistries/TagBot@v1
0 commit comments