We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5564cca commit 9e0cf33Copy full SHA for 9e0cf33
.github/workflows/TagBot.yml
@@ -1,16 +1,16 @@
1
name: TagBot
2
on:
3
- issue_comment:
4
- types:
5
- - created
+ repository_dispatch:
6
workflow_dispatch:
7
jobs:
8
TagBot:
9
- if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10
runs-on: ubuntu-latest
11
steps:
+ - name: Event Information
+ run: |
+ echo "Event '${{ github.event.action }}' received from '${{ github.event.client_payload.repository }}'"
12
- uses: JuliaRegistries/TagBot@v1
13
with:
14
- token: ${{ secrets.GITHUB_TOKEN }}
15
- ssh: ${{ secrets.DOCUMENTER_KEY }}
+ token: ${{ secrets.TAGBOT_KEY }}
16
registry: HolyLab/HolyLabRegistry
+ lookback: 300
0 commit comments