Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
interval: "daily"
- package-ecosystem: "uv"
directory: "/"
schedule:
Expand Down
23 changes: 0 additions & 23 deletions .github/workflows/draft-release.yml

This file was deleted.

39 changes: 39 additions & 0 deletions .github/workflows/pull-request-plan-production.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Plan Production Environment

on:
pull_request:
types: [opened, synchronize, reopened]
branches: [ "**" ]

jobs:
get-tg-versions:
permissions:
contents: read
uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-versions.yml@0.2.0

build-matrix:
permissions:
contents: read
uses: launchbynttdata/launch-workflows/.github/workflows/reusable-github-matrix-tg.yml@0.2.0
with:
platform_environment: production

call-terragrunt-plan:
needs: [get-tg-versions, build-matrix]
permissions:
contents: read
id-token: write
strategy:
fail-fast: false
matrix: ${{ fromJson(needs.build-matrix.outputs.matrix) }}

uses: launchbynttdata/launch-workflows/.github/workflows/reusable-terragrunt-plan-only.yml@0.3.0
with:
git_branch: ${{ github.head_ref }}
tf_version: ${{ needs.get-tg-versions.outputs.tf_version }}
tg_version: ${{ needs.get-tg-versions.outputs.tg_version }}
assume_role_arn: "arn:aws:iam::159247424670:role/github-actions-deploy-role"
environment: ${{ matrix.terragrunt_environment.environment }}
region: ${{ matrix.terragrunt_environment.region }}
env_id: ${{ matrix.terragrunt_environment.instance }}
secrets: inherit
23 changes: 23 additions & 0 deletions .github/workflows/release-draft.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Draft Release

on:
push:
branches:
- main

permissions:
contents: read

jobs:
draft-release:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@b1476f6e6eb133afa41ed8589daba6dc69b4d3f5
with:
commitish: main
latest: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading