diff options
author | sudoforge <no-reply@sudoforge.com> | 2024-07-22 20:06:49 -0700 |
---|---|---|
committer | sudoforge <no-reply@sudoforge.com> | 2024-07-22 20:06:49 -0700 |
commit | ea86d570c4210620c5546dbff60bf5edde5a3189 (patch) | |
tree | 3def03416eeacb32445739858787dbe0f1b5f93f | |
parent | c67d75faaa432889caa4deafc7e58d4099fac2cd (diff) | |
download | git-bug-ea86d570c4210620c5546dbff60bf5edde5a3189.tar.gz |
feat: allow for manual execution of workflow: cron
This is a temporary change, that will be reverted later, simply to play
catch-up with the backlog of items that are stale, but not marked as
such.
-rw-r--r-- | .github/workflows/cron.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/cron.yml b/.github/workflows/cron.yml index 94ce593c..8ff477cc 100644 --- a/.github/workflows/cron.yml +++ b/.github/workflows/cron.yml @@ -1,6 +1,7 @@ name: cron on: + workflow_dispatch: schedule: - cron: '0 0 * * *' # every day at 00:00 |