Top Related Projects
The all-batteries-included GitHub SDK for Browsers, Node.js, and Deno.
Go library for accessing the GitHub v3 API
Typed interactions with the GitHub API v3
GitHub’s official command line tool
Tasks for Azure Pipelines
Quick Overview
GitHub Script is an official GitHub Actions project that allows you to use JavaScript and the Octokit REST API to script workflows directly in your YAML files. It provides a convenient way to interact with GitHub's API, manipulate workflow data, and perform complex operations within GitHub Actions.
Pros
- Enables powerful scripting capabilities within GitHub Actions workflows
- Provides direct access to GitHub's API through Octokit
- Allows for dynamic and conditional workflow execution
- Simplifies complex operations that would otherwise require multiple steps or external tools
Cons
- Requires knowledge of JavaScript and GitHub's API
- Can make workflow files more complex and harder to read
- Limited debugging capabilities compared to standalone scripts
- May introduce security risks if not properly managed
Code Examples
- Creating an issue:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: 'Automated issue',
body: 'This issue was created by a GitHub Action'
})
- Adding a label to a pull request:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.addLabels({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
labels: ['automated']
})
- Commenting on a pull request:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: 'Thank you for your contribution!'
})
Getting Started
To use GitHub Script in your workflow:
- Add the following step to your workflow YAML file:
- uses: actions/github-script@v6
with:
script: |
// Your JavaScript code here
console.log(context)
-
Replace the comment with your desired JavaScript code, using the
githubobject to interact with the GitHub API and thecontextobject to access workflow information. -
Customize the script to perform the actions you need, such as creating issues, adding labels, or manipulating workflow data.
Competitor Comparisons
The all-batteries-included GitHub SDK for Browsers, Node.js, and Deno.
Pros of Octokit.js
- More comprehensive API coverage for GitHub interactions
- Can be used in various JavaScript environments (Node.js, browser, etc.)
- Offers more flexibility and control over GitHub API requests
Cons of Octokit.js
- Requires more setup and configuration compared to github-script
- Steeper learning curve for developers new to GitHub API interactions
- May require additional dependencies and increase project complexity
Code Comparison
github-script:
const issue = await github.rest.issues.get({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number
});
Octokit.js:
const octokit = new Octokit({ auth: 'token' });
const issue = await octokit.rest.issues.get({
owner: 'owner',
repo: 'repo',
issue_number: 123
});
Both libraries provide ways to interact with the GitHub API, but github-script is more tightly integrated with GitHub Actions and provides a simpler setup for common tasks. Octokit.js offers more flexibility and can be used in various JavaScript environments, making it suitable for broader application development beyond GitHub Actions.
Go library for accessing the GitHub v3 API
Pros of go-github
- Full-featured Go library for interacting with GitHub API
- Provides strong typing and compile-time checks
- Suitable for building complex GitHub-related applications
Cons of go-github
- Requires more setup and boilerplate code
- Steeper learning curve for non-Go developers
- Not directly integrated with GitHub Actions
Code Comparison
github-script:
const response = await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: context.issue.number,
body: 'Hello from GitHub Actions!'
});
go-github:
client := github.NewClient(nil)
comment := &github.IssueComment{Body: github.String("Hello from go-github!")}
_, _, err := client.Issues.CreateComment(context.Background(), owner, repo, issueNumber, comment)
if err != nil {
// Handle error
}
Summary
github-script is designed for quick and easy GitHub API interactions within GitHub Actions workflows, using JavaScript. It's ideal for simple tasks but may be limited for complex applications.
go-github is a comprehensive Go library for interacting with the GitHub API, offering more flexibility and power for building GitHub-related applications. However, it requires more setup and is not as tightly integrated with GitHub Actions.
Choose based on your specific needs, programming language preference, and the complexity of your GitHub interactions.
Typed interactions with the GitHub API v3
Pros of PyGithub
- More comprehensive API coverage, allowing for complex GitHub operations
- Can be used in standalone Python scripts, not limited to GitHub Actions
- Extensive documentation and community support
Cons of PyGithub
- Requires Python environment setup and management
- May have a steeper learning curve for those unfamiliar with Python
- Not as tightly integrated with GitHub Actions workflow
Code Comparison
PyGithub:
from github import Github
g = Github("access_token")
repo = g.get_repo("owner/repo")
issue = repo.create_issue(title="Issue Title", body="Issue Body")
github-script:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.create({
owner: context.repo.owner,
repo: context.repo.repo,
title: "Issue Title",
body: "Issue Body"
})
Both examples create an issue, but PyGithub requires Python setup while github-script integrates directly into GitHub Actions workflows.
GitHub’s official command line tool
Pros of cli/cli
- Provides a full-featured command-line interface for GitHub
- Supports a wide range of GitHub operations outside of Actions workflows
- Can be used locally on developers' machines for daily GitHub tasks
Cons of cli/cli
- Requires installation and setup on the user's system
- May have a steeper learning curve for users unfamiliar with CLI tools
- Not specifically designed for use within GitHub Actions workflows
Code Comparison
github-script:
- uses: actions/github-script@v6
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thank you for your contribution!'
})
cli/cli:
- name: Create issue comment
run: |
gh issue comment ${{ github.event.issue.number }} --body "Thank you for your contribution!"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Summary
github-script is tailored for use in GitHub Actions, providing a JavaScript API for GitHub operations. cli/cli offers a more versatile command-line tool for GitHub interactions, usable both in and outside of Actions workflows. The choice between them depends on the specific use case and environment.
Tasks for Azure Pipelines
Pros of azure-pipelines-tasks
- Extensive library of pre-built tasks for various Azure services and development tools
- Seamless integration with Azure DevOps and other Microsoft ecosystem products
- Supports multiple languages and platforms, including Windows, Linux, and macOS
Cons of azure-pipelines-tasks
- Steeper learning curve due to the large number of available tasks and configurations
- Less flexibility for custom scripting compared to github-script's JavaScript approach
- Primarily designed for Azure DevOps, which may limit its usefulness in other CI/CD environments
Code Comparison
azure-pipelines-tasks:
- task: AzureWebApp@1
inputs:
azureSubscription: 'Resource Manager Connection'
appName: 'myWebApp'
deployToSlotOrASE: true
resourceGroupName: 'myResourceGroup'
slotName: 'production'
github-script:
- uses: actions/github-script@v6
with:
script: |
const octokit = github.getOctokit(process.env.GITHUB_TOKEN)
await octokit.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'Thank you for your contribution!'
})
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
actions/github-script
This action makes it easy to quickly write a script in your workflow that uses the GitHub API and the workflow run context.
Note
Thank you for your interest in this GitHub action, however, right now we are not taking contributions.
We continue to focus our resources on strategic areas that help our customers be successful while making developers' lives easier. While GitHub Actions remains a key part of this vision, we are allocating resources towards other areas of Actions and are not taking contributions to this repository at this time. The GitHub public roadmap is the best place to follow along for any updates on features weâre working on and what stage theyâre in.
We are taking the following steps to better direct requests related to GitHub Actions, including:
-
We will be directing questions and support requests to our Community Discussions area
-
High Priority bugs can be reported through Community Discussions or you can report these to our support team https://support.github.com/contact/bug-report.
-
Security Issues should be handled as per our security.md
We will still provide security updates for this project and fix major breaking changes during this time.
You are welcome to still raise bugs in this repo.
This action
To use this action, provide an input named script that contains the body of an asynchronous JavaScript function call.
The following arguments will be provided:
githubA pre-authenticated octokit/rest.js client with pagination pluginscontextAn object containing the context of the workflow runcoreA reference to the @actions/core packageglobA reference to the @actions/glob packageioA reference to the @actions/io packageexecA reference to the @actions/exec packagerequireA proxy wrapper around the normal Node.jsrequireto enable requiring relative paths (relative to the current working directory) and requiring npm packages installed in the current working directory. If for some reason you need the non-wrappedrequire, there is an escape hatch available:__original_require__is the original value ofrequirewithout our wrapping applied.
Since the script is just a function body, these values will already be
defined, so you don't have to import them (see examples below).
See octokit/rest.js for the API client documentation.
Breaking Changes
V8
Version 8 of this action updated the runtime to Node 24 - https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions
All scripts are now run with Node 24 instead of Node 20 and are affected by any breaking changes between Node 20 and 24.
This requires a minimum Actions Runner version of v2.327.1
V7
Version 7 of this action updated the runtime to Node 20 - https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions
All scripts are now run with Node 20 instead of Node 16 and are affected by any breaking changes between Node 16 and 20
The previews input now only applies to GraphQL API calls as REST API previews are no longer necessary - https://github.blog/changelog/2021-10-14-rest-api-preview-promotions/.
V6
Version 6 of this action updated the runtime to Node 16 - https://docs.github.com/en/actions/creating-actions/metadata-syntax-for-github-actions#runs-for-javascript-actions
All scripts are now run with Node 16 instead of Node 12 and are affected by any breaking changes between Node 12 and 16.
V5
Version 5 of this action includes the version 5 of @actions/github and @octokit/plugin-rest-endpoint-methods. As part of this update, the Octokit context available via github no longer has REST methods directly. These methods are available via github.rest.* - https://github.com/octokit/plugin-rest-endpoint-methods.js/releases/tag/v5.0.0
For example, github.issues.createComment in V4 becomes github.rest.issues.createComment in V5
github.request, github.paginate, and github.graphql are unchanged.
Development
See development.md.
Passing inputs to the script
Actions expressions are evaluated before the script is passed to the action, so the result of any expressions
will be evaluated as JavaScript code.
It's highly recommended to not evaluate expressions directly in the script to avoid
script injections
and potential SyntaxErrors when the expression is not valid JavaScript code (particularly when it comes to improperly escaped strings).
To pass inputs, set env vars on the action step and reference them in your script with process.env:
- uses: actions/github-script@v8
env:
TITLE: ${{ github.event.pull_request.title }}
with:
script: |
const title = process.env.TITLE;
if (title.startsWith('octocat')) {
console.log("PR title starts with 'octocat'");
} else {
console.error("PR title did not start with 'octocat'");
}
Reading step results
The return value of the script will be in the step's outputs under the "result" key.
- uses: actions/github-script@v8
id: set-result
with:
script: return "Hello!"
result-encoding: string
- name: Get result
run: echo "${{steps.set-result.outputs.result}}"
See "Result encoding" for details on how the encoding of these outputs can be changed.
Result encoding
By default, the JSON-encoded return value of the function is set as the "result" in the
output of a github-script step. For some workflows, string encoding is preferred. This option can be set using the
result-encoding input:
- uses: actions/github-script@v8
id: my-script
with:
result-encoding: string
script: return "I will be string (not JSON) encoded!"
Retries
By default, requests made with the github instance will not be retried. You can configure this with the retries option:
- uses: actions/github-script@v8
id: my-script
with:
result-encoding: string
retries: 3
script: |
github.rest.issues.get({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
})
In this example, request failures from github.rest.issues.get() will be retried up to 3 times.
You can also configure which status codes should be exempt from retries via the retry-exempt-status-codes option:
- uses: actions/github-script@v8
id: my-script
with:
result-encoding: string
retries: 3
retry-exempt-status-codes: 400,401
script: |
github.rest.issues.get({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
})
By default, the following status codes will not be retried: 400, 401, 403, 404, 422 (source).
These retries are implemented using the octokit/plugin-retry.js plugin. The retries use exponential backoff to space out retries. (source)
Examples
Note that github-token is optional in this action, and the input is there
in case you need to use a non-default token.
By default, github-script will use the token provided to your workflow.
Print the available attributes of context
- name: View context attributes
uses: actions/github-script@v8
with:
script: console.log(context)
Comment on an issue
on:
issues:
types: [opened]
jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: 'ð Thanks for reporting!'
})
Apply a label to an issue
on:
issues:
types: [opened]
jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['Triage']
})
Welcome a first-time contributor
You can format text in comments using the same Markdown syntax as the GitHub web interface:
on: pull_request_target
jobs:
welcome:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
// Get a list of all issues created by the PR opener
// See: https://octokit.github.io/rest.js/#pagination
const creator = context.payload.sender.login
const opts = github.rest.issues.listForRepo.endpoint.merge({
...context.issue,
creator,
state: 'all'
})
const issues = await github.paginate(opts)
for (const issue of issues) {
if (issue.number === context.issue.number) {
continue
}
if (issue.pull_request) {
return // Creator is already a contributor.
}
}
await github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: `**Welcome**, new contributor!
Please make sure you've read our [contributing guide](CONTRIBUTING.md) and we look forward to reviewing your Pull request shortly â¨`
})
Download data from a URL
You can use the github object to access the Octokit API. For
instance, github.request
on: pull_request
jobs:
diff:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
const diff_url = context.payload.pull_request.diff_url
const result = await github.request(diff_url)
console.log(result)
(Note that this particular example only works for a public URL, where the diff URL is publicly accessible. Getting the diff for a private URL requires using the API.)
This will print the full diff object in the screen; result.data will
contain the actual diff text.
Run custom GraphQL queries
You can use the github.graphql object to run custom GraphQL queries against the GitHub API.
jobs:
list-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
script: |
const query = `query($owner:String!, $name:String!, $label:String!) {
repository(owner:$owner, name:$name){
issues(first:100, labels: [$label]) {
nodes {
id
}
}
}
}`;
const variables = {
owner: context.repo.owner,
name: context.repo.repo,
label: 'wontfix'
}
const result = await github.graphql(query, variables)
console.log(result)
Run a separate file
If you don't want to inline your entire script that you want to run, you can use a separate JavaScript module in your repository like so:
on: push
jobs:
echo-input:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v8
with:
script: |
const script = require('./path/to/script.js')
console.log(script({github, context}))
And then export a function from your module:
module.exports = ({github, context}) => {
return context.payload.client_payload.value
}
Note that because you can't require things like the GitHub context or
Actions Toolkit libraries, you'll want to pass them as arguments to your
external function.
Additionally, you'll want to use the checkout action to make sure your script file is available.
Run a separate file with an async function
You can also use async functions in this manner, as long as you await it in
the inline script.
In your workflow:
on: push
jobs:
echo-input:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v8
env:
SHA: '${{env.parentSHA}}'
with:
script: |
const script = require('./path/to/script.js')
await script({github, context, core})
And then export an async function from your module:
module.exports = async ({github, context, core}) => {
const {SHA} = process.env
const commit = await github.rest.repos.getCommit({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `${SHA}`
})
core.exportVariable('author', commit.data.commit.author.email)
}
Use npm packages
Like importing your own files above, you can also use installed modules.
Note that this is achieved with a wrapper on top require, so if you're
trying to require a module inside your own file, you might need to import
it externally or pass the require wrapper to your file:
on: push
jobs:
echo-input:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: npm ci
# or one-off:
- run: npm install execa
- uses: actions/github-script@v8
with:
script: |
const execa = require('execa')
const { stdout } = await execa('echo', ['hello', 'world'])
console.log(stdout)
Use ESM import
To import an ESM file, you'll need to reference your script by an absolute path and ensure you have a package.json file with "type": "module" specified.
For a script in your repository src/print-stuff.js:
export default function printStuff() {
console.log('stuff')
}
on: push
jobs:
print-stuff:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v8
with:
script: |
const { default: printStuff } = await import('${{ github.workspace }}/src/print-stuff.js')
await printStuff()
Use scripts with jsDoc support
If you want type support for your scripts, you could use the command below to install the
@actions/github-script type declaration.
$ npm i -D @actions/github-script@github:actions/github-script
And then add the jsDoc declaration to your script like this:
// @ts-check
/** @param {import('@actions/github-script').AsyncFunctionArguments} AsyncFunctionArguments */
export default async ({ core, context }) => {
core.debug("Running something at the moment");
return context.actor;
};
Using a separate GitHub token
The GITHUB_TOKEN used by default is scoped to the current repository, see Authentication in a workflow.
If you need access to a different repository or an API that the GITHUB_TOKEN doesn't have permissions to, you can provide your own PAT as a secret using the github-token input.
Learn more about creating and using encrypted secrets
on:
issues:
types: [opened]
jobs:
apply-label:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v8
with:
github-token: ${{ secrets.MY_PAT }}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['Triage']
})
Using exec package
The provided @actions/exec package allows to execute command or tools in a cross platform way:
on: push
jobs:
use-exec:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v8
with:
script: |
const exitCode = await exec.exec('echo', ['hello'])
console.log(exitCode)
exec packages provides getExecOutput function to retrieve stdout and stderr from executed command:
on: push
jobs:
use-get-exec-output:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/github-script@v8
with:
script: |
const {
exitCode,
stdout,
stderr
} = await exec.getExecOutput('echo', ['hello']);
console.log(exitCode, stdout, stderr)
Top Related Projects
The all-batteries-included GitHub SDK for Browsers, Node.js, and Deno.
Go library for accessing the GitHub v3 API
Typed interactions with the GitHub API v3
GitHub’s official command line tool
Tasks for Azure Pipelines
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot