Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 901 Bytes

README.md

File metadata and controls

25 lines (17 loc) · 901 Bytes

shared-actions

This repository houses common and shared GitHub Action workflows.

One way to leverage the workflow is to copy and paste it into your repo or you can simply reference it. To use one of the workflows in your GitHub Action job, input the respective workflow in the uses parameter like so

jobs:
  validate:
    uses: trussworks/shared-actions/.github/workflows/validate-tf.yml@main

Dependencies

Run the following commands to make sure your local machine has the tools necessary to work with this repository.

brew install pre-commit
pre-commit install --install-hooks

Creating New Reusable Workflows