GitHub Actions ​
Manage workflows, trigger runs, and retrieve artifacts with GitHub Actions.
| Detail | Value |
|---|---|
| Category | CI/CD |
| Base URL | https://api.github.com |
| Authentication | Bearer Token |
| Endpoints | 8 |
| Connector key | github-actions |
Using GitHub Actions in a workflow ​
- Go to Connections and click New Connection.
- Pick GitHub Actions from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET /repos/{owner}/{repo}/actions/workflows | List workflows |
| POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches | Trigger a workflow |
| GET /repos/{owner}/{repo}/actions/runs | List workflow runs |
| GET /repos/{owner}/{repo}/actions/runs/{run_id} | Get workflow run details |
| POST /repos/{owner}/{repo}/actions/runs/{run_id}/cancel | Cancel a workflow run |
| POST /repos/{owner}/{repo}/actions/runs/{run_id}/rerun | Rerun a workflow run |
| GET /repos/{owner}/{repo}/actions/runs/{run_id}/jobs | List jobs for a run |
| GET /repos/{owner}/{repo}/actions/runs/{run_id}/artifacts | List artifacts |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.