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
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 creating and managing an ArgoCD desired state repository
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