Add a manual trigger to force CI to bump crate versions

I'm curious to try out the full workflow so instead of waiting a few
weeks I figured I'd add a manual trigger here too
This commit is contained in:
Alex Crichton
2021-10-28 10:01:59 -07:00
parent a2d83d4ae6
commit 909a5d54d2
2 changed files with 24 additions and 0 deletions

View File

@@ -16,6 +16,14 @@ on:
# https://crontab.guru/#0_0_8-14_*_1
- cron: '0 0 8-14 * 1'
# Allow manually triggering this workflow remotely via a curl request,
# described at
# https://docs.github.com/en/rest/reference/actions#create-a-workflow-dispatch-event
#
# Note that this can be also triggered by running the script in
# `ci/force-ci-bump-version.sh`
workflow_dispatch:
jobs:
bump_version:
runs-on: ubuntu-latest