Note: GitHub Actions support on GitHub Enterprise Server 2.22 is a limited public beta. To review the external storage requirements and request access to the beta, see "Enabling GitHub Actions and configuring storage."
Note: GitHub-hosted runners are not currently supported on GitHub Enterprise Server. You can see more information about planned future support on the GitHub public roadmap.
To run a workflow manually, the workflow must be configured to run on the workflow_dispatch event. For more information, see "Events that trigger workflows."
Running a workflow on GitHub
To trigger the workflow_dispatch event on GitHub, your workflow must be in the default branch. Follow these steps to manually trigger a workflow run.
Read access to the repository is required to perform these steps.
- On GitHub Enterprise, navigate to the main page of the repository.
- Under your repository name, click Actions.

- In the left sidebar, click the workflow you want to run.

- Above the list of workflow runs, select Run workflow.

- Select the branch where the workflow will run and type the input parameters used by the workflow. Click Run workflow.

Running a workflow using the REST API
When using the REST API, you configure the inputs and ref as request body parameters. If the inputs are omitted, the default values defined in the workflow file are used.
For more information about using the REST API, see the "Create a workflow dispatch event."