v1.12.3
You can now add inputs to your workflow_dispatch
trigger. You can use this feature to override certain config options for just a single manual TagBot run. For example, perhaps you've just installed TagBot on a package repo with a couple of versions that were registered a week ago, and those versions do not yet have Git tags/GitHub releases. TagBot will not fill in those releases for you, because they are older than the default lookback.
You could edit your TagBot.yml
like so:
name: TagBot
on:
issue_comment: # ...
workflow_dispatch:
inputs: # NEW!
lookback:
jobs: # ...
Then, when you trigger a manual TagBot run, you can enter the value 14
for lookback
which will override the default and cause TagBot to look for new versions registered within the last two weeks.
You can override any input in the same manner.
Alternatively, this might just break everything. Fingers crossed.