Skip to content

Enable merge queue #29

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 30, 2025
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
15 changes: 2 additions & 13 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,12 @@
#
# Order is important: the last matching pattern has the highest precedence

# These owners will be the default owners for everything
* @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors

# Cloud Posse must review any changes to Makefiles
**/Makefile @cloudposse-terraform-components/engineering
**/Makefile.* @cloudposse-terraform-components/engineering

# Cloud Posse must review any changes to GitHub actions
.github/* @cloudposse-terraform-components/engineering

# Cloud Posse must review any changes to standard context definition,
# but some changes can be rubber-stamped.
**/*.tf @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
README.yaml @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
README.md @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers
docs/*.md @cloudposse-terraform-components/engineering @cloudposse-terraform-components/contributors @cloudposse-terraform-components/approvers

# Cloud Posse Admins must review all changes to CODEOWNERS or the mergify configuration
# Cloud Posse Admins must review all changes to CODEOWNERS, github configuration or the mergify configuration
.github/* @cloudposse-terraform-components/admins
.github/mergify.yml @cloudposse-terraform-components/admins
.github/CODEOWNERS @cloudposse-terraform-components/admins
1 change: 1 addition & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ repository:
description: This component is responsible for provisioning Aurora Postgres RDS clusters
homepage: https://cloudposse.com/accelerate
topics: terraform, terraform-component

20 changes: 20 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: auto merge
on:
workflow_dispatch:
inputs:
pr_number:
description: 'PR number'
required: true
type: string

permissions:
pull-requests: write
id-token: write
contents: write

jobs:
automerge:
uses: cloudposse-terraform-components/.github/.github/workflows/shared-auto-merge.yml@main
with:
pr_number: ${{ inputs.pr_number }}
secrets: inherit
Loading