All Projects → actions → Github Script

actions / Github Script

Licence: mit
Write workflows scripting the GitHub API in JavaScript

Programming Languages

javascript
184084 projects - #8 most used programming language
typescript
32286 projects

Projects that are alternatives of or similar to Github Script

Githubchart Api
📅 Embed github contributions chart as image
Stars: ✭ 489 (-49.17%)
Mutual labels:  github-api
Github Changelog Generator
Automatically generate change log from your tags, issues, labels and pull requests on GitHub.
Stars: ✭ 6,631 (+589.29%)
Mutual labels:  github-api
Probot Gpg
A GitHub App that enforces GPG signatures on pull requests (no longer maintained)
Stars: ✭ 13 (-98.65%)
Mutual labels:  github-api
Gitstalk
Discover who's upto what on Github
Stars: ✭ 538 (-44.07%)
Mutual labels:  github-api
Micro Github
A tiny microservice that makes adding authentication with GitHub to your application easy.
Stars: ✭ 726 (-24.53%)
Mutual labels:  github-api
Downgit
Create GitHub Resource Download Link
Stars: ✭ 936 (-2.7%)
Mutual labels:  github-api
Git Peek
git repo to local editor instantly
Stars: ✭ 485 (-49.58%)
Mutual labels:  github-api
Community User Profile
👨‍💻 Profile page, but for developers.
Stars: ✭ 32 (-96.67%)
Mutual labels:  github-api
Github Api
Java API for GitHub
Stars: ✭ 743 (-22.77%)
Mutual labels:  github-api
Falko Api
📈 Falko API: Plataform for agile projects management 📊
Stars: ✭ 13 (-98.65%)
Mutual labels:  github-api
Starcharts
Plot your repository stars over time.
Stars: ✭ 560 (-41.79%)
Mutual labels:  github-api
Github Trending Api
The missing APIs for GitHub trending projects and developers 📈
Stars: ✭ 617 (-35.86%)
Mutual labels:  github-api
Github Repo Size
🚀 Chrome extension to display repository size on GitHub
Stars: ✭ 859 (-10.71%)
Mutual labels:  github-api
Git Labelmaker
🎏 Manage your GitHub labels from the command line!
Stars: ✭ 534 (-44.49%)
Mutual labels:  github-api
Github Connector
The GitHub Active Directory Connector allows managing GitHub organizations with Active Directory.
Stars: ✭ 27 (-97.19%)
Mutual labels:  github-api
Picx
基于 GitHub API 开发的图床神器,图片外链使用 jsDelivr 进行 CDN 加速。免下载、免安装,打开网站即可直接使用。免费、稳定、高效。
Stars: ✭ 482 (-49.9%)
Mutual labels:  github-api
Repo Image Hosting
github / gitee 图床 ,使用golang(Gin)实现
Stars: ✭ 25 (-97.4%)
Mutual labels:  github-api
Gitgot
Semi-automated, feedback-driven tool to rapidly search through troves of public data on GitHub for sensitive secrets.
Stars: ✭ 964 (+0.21%)
Mutual labels:  github-api
Tent
Content management with Github hosted Markdown as an authoritative data source
Stars: ✭ 28 (-97.09%)
Mutual labels:  github-api
Mvfsillva
My personal website
Stars: ✭ 13 (-98.65%)
Mutual labels:  github-api

actions/github-script

.github/workflows/integration.yml .github/workflows/ci.yml .github/workflows/licensed.yml

This action makes it easy to quickly write a script in your workflow that uses the GitHub API and the workflow run context.

In order to use this action, a script input is provided. The value of that input should be the body of an asynchronous function call. The following arguments will be provided:

Since the script is just a function body, these values will already be defined, so you don't have to (see examples below).

See octokit/rest.js for the API client documentation.

Note This action is still a bit of an experiment—the API may change in future versions. 🙂

Development

See development.md.

Reading step results

The return value of the script will be in the step's outputs under the "result" key.

- uses: actions/[email protected]
  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/[email protected]
  id: my-script
  with:
    github-token: ${{secrets.GITHUB_TOKEN}}
    result-encoding: string
    script: return "I will be string (not JSON) encoded!"

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/[email protected]
  with:
    script: console.log(context)

Comment on an issue

on:
  issues:
    types: [opened]

jobs:
  comment:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/[email protected]
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          script: |
            github.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/[email protected]
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          script: |
            github.issues.addLabels({
              issue_number: context.issue.number,
              owner: context.repo.owner,
              repo: context.repo.repo,
              labels: ['Triage']
            })

Welcome a first-time contributor

on: pull_request

jobs:
  welcome:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/[email protected]
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          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.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.issues.createComment({
              issue_number: context.issue.number,
              owner: context.repo.owner,
              repo: context.repo.repo,
              body: 'Welcome, new contributor!'
            })

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/[email protected]
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          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/[email protected]
        with:
          github-token: ${{secrets.GITHUB_TOKEN}}
          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/[email protected]
      - uses: actions/[email protected]
        with:
          script: |
            const script = require(`${process.env.GITHUB_WORKSPACE}/path/to/script.js`)
            console.log(script({github, context}))

Note that the script path given to require() must be an absolute path in this case, hence using GITHUB_WORKSPACE.

And then export a function from your module:

module.exports = ({github, context}) => {
  return context.payload.client_payload.value
}

You can also use async functions in this manner, as long as you await it in the inline script.

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.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].