How do I specify a specific commit when manually running git action?
How do I create a workflow that can only be started manually, while it will need to specify a specific commit with which it will work? >Solution : You can manually run a workflow, provided it is configured to run on the workflow_dispatch event. Add inputs to define your parameter on: workflow_dispatch: inputs: myCommit: description:… Read More How do I specify a specific commit when manually running git action?