workflow-dispatch
workflow-dispatch copied to clipboard
A GitHub Action for triggering workflows, using the `workflow_dispatch` event
Repo `org/A` has this: ```yaml uses: benc-uk/workflow-dispatch@v1 with: workflow: CI token: ${{ secrets.WORKFLOW_PAT }} inputs: '{ "blah": "foo", "blurf": "bar" }' repo: org/B ``` When the workflow runs, I get...
Per the documentation: > This allows you to chain workflows, the classic use case is have a CI build workflow, trigger a CD release/deploy workflow when it completes. Allowing you...
Bumps [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) from 1.2.4 to 1.9.1. Changelog Sourced from @actions/core's changelog. 1.9.1 Randomize delimiter when calling core.exportVariable 1.9.0 Added toPosixPath, toWin32Path and toPlatformPath utilities #1102 1.8.2 Update to v2.0.1 of...
I am getting an error trying to run a different workflow from the current one. This is the step in the workflow: ``` - name: Invoke unit test workflow uses:...
This enable us to wait on the specific id of the workflow run
Hello, I'm trying to pass multiple inputs to a workflow, using the syntax provided in the README, i'm getting this error:  Can anyone help? Thanks
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
Previously, workflow-dispatch only allows specifying the workflow by ID (as returned by the API) or by name (as specified in the YAML). Specifying by ID is problematic because the ID...
The current behavior of the action when a workflow being triggered is disabled is to fail the step, and thus fail the action. I feel it would be better, instead,...
[The Readme says](https://github.com/benc-uk/workflow-dispatch#ref): > The reference can be a branch, tag, or a commit SHA. But when using a SHA, the action fails with: `No ref found for: ` Indeed,...