You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Check Atlantis configuration file
v0.0.5
A GitHub action to check Atlantis (Terraform Pull Request Automation) configuration file (atlantis.yaml
) for obsolete projects and projects ordering. Optionally commit the cleanup / sorting results back to PR.
name: Check Atlantis
on:
# only run on PRs
pull_request:
types: [opened, synchronize]
paths:
- '.github/workflows/atlantis.yml'
- 'atlantis.yaml'
- '**.tf'
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# https://github.com/actions/checkout/issues/719
fetch-depth: 0
ref: ${{ github.event.pull_request.head.ref }}
- uses: antonblr/check-atlantis-action@v0
with:
commit-change: 'true'
sort-by: 'name'
Name | Description | Default |
---|---|---|
atlantis-config |
Path to atlantis.yaml file, relative to $GITHUB_WORKSPACE (projects' root). |
./atlantis.yaml |
commit-change |
Commit updated (sorted and cleaned-up) atlantis.yaml back to the PR that triggered the workflow using the built-in Personal access token (PAT) token |
false |
sort-by |
Key name to sort atlantis projects by. Valid values are dir or name . |
dir |