Skip to content

mixmaxhq/github-workflows-public

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

Reusable GitHub Actions Workflows

Reusing GitHub Actions workflows across repositories.

Workflows

Specify Node version in .nvmrc and create a file .github/workflows/ci.yml with the workflow definition.

name: continuous-integration

on:
  push:
    branches:
      - master
  pull_request:
    branches:
      - master

jobs:
  checks:
    uses: mixmaxhq/github-workflows-public/.github/workflows/checks.yml@main

  release:
    uses: mixmaxhq/github-workflows-public/.github/workflows/release.yml@main
    needs: checks
    secrets: inherit

About

Reusable GitHub Actions Workflows

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors