-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Derek Morgan
committed
Oct 18, 2024
1 parent
d2cafd8
commit 5b776f4
Showing
1 changed file
with
74 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
on: | ||
pull_request: | ||
types: [opened, synchronize, closed] | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
infracost-pull-request-checks: | ||
name: Infracost Pull Request Checks | ||
if: github.event_name == 'pull_request' && (github.event.action == 'opened' || github.event.action == 'synchronize') | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: read | ||
pull-requests: write # Required to post comments | ||
steps: | ||
|
||
- name: Setup Infracost | ||
uses: infracost/actions/setup@v3 | ||
with: | ||
api-key: ${{ secrets.INFRACOST_API_KEY }} | ||
|
||
# Checkout the base branch of the pull request (e.g. main/master). | ||
- name: Checkout base branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: '${{ github.event.pull_request.base.ref }}' | ||
|
||
# Generate Infracost JSON file as the baseline. | ||
- name: Generate Infracost cost estimate baseline | ||
run: | | ||
infracost breakdown --path=. \ | ||
--format=json \ | ||
--out-file=/tmp/infracost-base.json | ||
# Checkout the current PR branch so we can create a diff. | ||
- name: Checkout PR branch | ||
uses: actions/checkout@v4 | ||
|
||
# Generate an Infracost diff and save it to a JSON file. | ||
- name: Generate Infracost diff | ||
run: | | ||
infracost diff --path=. \ | ||
--format=json \ | ||
--compare-to=/tmp/infracost-base.json \ | ||
--out-file=/tmp/infracost.json | ||
- name: Post Infracost comment | ||
run: | | ||
infracost comment github --path=/tmp/infracost.json \ | ||
--repo=$GITHUB_REPOSITORY \ | ||
--github-token=${{ github.token }} \ | ||
--pull-request=${{ github.event.pull_request.number }} \ | ||
--behavior=update | ||
# Run Infracost on default branch and update Infracost Cloud | ||
infracost-default-branch-update: | ||
name: Infracost Default Branch Update | ||
if: github.event_name == 'push' && (github.ref_name == 'main' || github.ref_name == 'master') | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Setup Infracost | ||
uses: infracost/actions/setup@v3 | ||
with: | ||
api-key: ${{ secrets.INFRACOST_API_KEY }} | ||
|
||
- name: Checkout main/master branch | ||
uses: actions/checkout@v4 | ||
|
||
- name: Run Infracost on default branch and update Infracost Cloud | ||
run: | | ||
infracost breakdown --path=. \ | ||
--format=json \ | ||
--out-file=infracost.json | ||
infracost upload --path=infracost.json || echo "Always pass main branch runs even if there are policy failures" |