Data report"State of code review 2024" is now liveRead the full report

Getting started with GitHub Actions

Greg Foster
Greg Foster
Graphite software engineer


Note

This guide explains this concept in vanilla Git. For Graphite documentation, see our CLI docs.


GitHub Actions is a powerful platform built into GitHub that lets you create and run various code automations. These automations can help streamline repetitive or complex tasks, such as testing new changes, deploying releases, and running static code analyzers to detect bugs in code.

GitHub Actions consist of five core components:

Diagram illustrating the five core components of GitHub Actions

  1. Workflows define a sequence of jobs to execute when an event occurs. These jobs can be run in sequence or in parallel. You develop workflows in YAML files in your repository's .github/workflows/ folder.
  2. Events, when raised, are used to start workflows. Different activities, both in GitHub and in external systems, can raise events. Scheduled events can also run workflows at certain times. Following are some common events:
    • push: This event runs whenever a new commit or tag is pushed to the repository.
    • pull_request: This event runs whenever activity occurs on a pull request, such as opening or merging a pull request.
    • schedule: This event lets you schedule a task to run using a cron schedule.
  3. Jobs are the building blocks of a workflow. Each job contains sequential steps that execute on the same runner.
  4. Actions are reusable blocks of logic that run tasks in your jobs. Actions can be a simple shell script or a complex, prebuilt application packaged into an action. You can search for prebuilt actions in the GitHub Marketplace or create your own.
  5. Runners are virtual machines or containers that execute a job. GitHub provides runners for all major operating systems. You can also host a runner on your server for more flexibility and control.

Many companies and individuals have developed prebuilt actions in the GitHub Marketplace, letting you build almost any automation for your repository. Following are some examples of use cases you might implement for your repository.

Creating a pull request can be daunting for first-time contributors. With GitHub actions however, you can post a welcome message on the contributor's pull request, welcoming them and explaining the contribution process:

Terminal
name: First Pull Request Greeting
on: [pull_request_target]
jobs:
greeting:
runs-on: ubuntu-latest
permissions:
pull-requests: write
steps:
- uses: actions/first-interaction@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
pr-message: |
Hey there 👋
Congrats on creating your first pull request in the Example repository. We're grateful to you for taking the time and contributing to this fantastic project.
This project conforms to [Airbnb's JavaScript Style Guide](https://airbnb.io/javascript/react/). ESLint will find any code that doesn't conform and highlight it for you. Once you've fixed the issues, the linter will ensure everything looks and then one of the maintainers will glance through the pull request and approve it.
Please get in touch with any of the maintainers in the Discussions tab if you have any questions.

GitHub Actions lets you run continuous integration (CI) in your repository. These processes include building code every time it changes, executing integration and unit tests, and running static code analyzers to find bugs and optimizations.

The following workflow demonstrates how to run unit tests for a TypeScript project when a new pull request is opened or merged into the main branch:

Terminal
name: Build and Test Node.js
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
# Define a build job
build:
runs-on: ubuntu-latest
# Define steps in the job
steps:
- uses: actions/checkout@v3
# Installs Node.js v20 to build and test the app
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
# Install the NPM dependencies
- name: NPM Install
run: npm install
# Build the TypeScript application
- name: NPM Build
run: npm run build
# Run the tests
- name: NPM Test
run: npm test

Continuous deliver (CD) is a modern deployment strategy in which new code changes are automatically deployed to a staging or test environment as soon as pull requests are merged. Some processes even release straight to production. GitHub Actions has several actions in the GitHub Marketplace that let you deploy to several hosting platforms, such as Azure, Amazon Web Services, and Google Cloud. These actions can be used in workflows triggered when pull requests are merged.

The following workflow uses two jobs to build and publish an npm package:

Terminal
name: Publish Node Package
on:
release:
types: [created]
jobs:
# First job builds the repository
build:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/checkout@v3
# Install Node.js 20 to run final tests before publishing
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
# Run the tests
- name: NPM Test
run: npm test
# Second job publishes the package to NPM
publish:
needs: build
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/checkout@v3
# Install Node.js 20 to publish the package
- name: Setup Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
# Run the `npm run publish` command
- name: NPM Publish
run: npm run publish
env:
NODE_AUTH_TOKEN: ${{secrets.npm_token}}

While powerful, GitHub Actions do have some limitations:

Stay unblocked. Ship faster.
Experience the new developer workflow - create, review, and merge code continuously. Get started with one command.
Learn more

Give your PR workflow
an upgrade today

Stack easier | Ship smaller | Review quicker

Or install our CLI.
Product Screenshot 1
Product Screenshot 2