-
-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into migration/20240304
- Loading branch information
Showing
20 changed files
with
184 additions
and
211 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,7 @@ | ||
# Upstream changes from _extends are only recognized when modifications are made to this file in the default branch. | ||
_extends: .github | ||
repository: | ||
name: terraform-aws-efs | ||
description: Terraform Module to define an EFS Filesystem (aka NFS) | ||
homepage: https://cloudposse.com/accelerate | ||
topics: terraform, terraform-modules, efs, aws, nfs, hcl2 |
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,25 @@ | ||
--- | ||
name: Branch | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
- release/** | ||
types: [opened, synchronize, reopened, labeled, unlabeled] | ||
push: | ||
branches: | ||
- main | ||
- release/v* | ||
paths-ignore: | ||
- '.github/**' | ||
- 'docs/**' | ||
- 'examples/**' | ||
- 'test/**' | ||
- 'README.md' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
terraform-module: | ||
uses: cloudposse/.github/.github/workflows/shared-terraform-module.yml@main | ||
secrets: inherit |
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,17 @@ | ||
--- | ||
name: chatops | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
permissions: | ||
pull-requests: write | ||
id-token: write | ||
contents: write | ||
statuses: write | ||
|
||
jobs: | ||
test: | ||
uses: cloudposse/.github/.github/workflows/shared-terraform-chatops.yml@main | ||
if: ${{ github.event.issue.pull_request && contains(github.event.comment.body, '/terratest') }} | ||
secrets: inherit |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,16 @@ | ||
--- | ||
name: release | ||
on: | ||
release: | ||
types: | ||
- published | ||
|
||
permissions: | ||
id-token: write | ||
contents: write | ||
pull-requests: write | ||
|
||
jobs: | ||
terraform-module: | ||
uses: cloudposse/.github/.github/workflows/shared-release-branches.yml@main | ||
secrets: inherit |
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
Oops, something went wrong.