Skip to content

Commit 72a58b7

Browse files
committed
Sync workflows
1 parent 927a4cd commit 72a58b7

12 files changed

+84
-319
lines changed

.github/auto-release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ version-resolver:
1818
- 'bug'
1919
- 'hotfix'
2020
default: 'minor'
21+
filter-by-commitish: true
2122

2223
categories:
2324
- title: '🚀 Enhancements'

.github/workflows/auto-context.yml

Lines changed: 0 additions & 67 deletions
This file was deleted.

.github/workflows/auto-format.yml

Lines changed: 0 additions & 88 deletions
This file was deleted.

.github/workflows/auto-readme.yml

Lines changed: 0 additions & 71 deletions
This file was deleted.

.github/workflows/auto-release.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.github/workflows/chatops.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: feature-branch-chatops
2+
on:
3+
issue_comment:
4+
types: [created]
5+
6+
permissions:
7+
pull-requests: write
8+
id-token: write
9+
contents: write
10+
11+
jobs:
12+
terraform-module:
13+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/feature-branch-chatops.yml@main
14+
secrets:
15+
github_access_token: ${{ secrets.REPO_ACCESS_TOKEN }}
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: feature-branch
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
- release/**
7+
types: [opened, synchronize, reopened, labeled, unlabeled]
8+
9+
permissions:
10+
pull-requests: write
11+
id-token: write
12+
contents: read
13+
14+
jobs:
15+
terraform-module:
16+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/feature-branch.yml@main
17+
secrets:
18+
github_access_token: ${{ secrets.REPO_ACCESS_TOKEN }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: release-branch
2+
on:
3+
push:
4+
branches:
5+
- main
6+
- release/**
7+
paths-ignore:
8+
- '.github/**'
9+
- 'docs/**'
10+
- 'examples/**'
11+
- 'test/**'
12+
13+
permissions:
14+
contents: write
15+
id-token: write
16+
17+
jobs:
18+
terraform-module:
19+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release-branch.yml@main
20+
secrets:
21+
github_access_token: ${{ secrets.REPO_ACCESS_TOKEN }}
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: release-published
2+
on:
3+
release:
4+
types:
5+
- published
6+
7+
permissions:
8+
contents: write
9+
id-token: write
10+
11+
jobs:
12+
terraform-module:
13+
uses: cloudposse/github-actions-workflows-terraform-module/.github/workflows/release.yml@main

0 commit comments

Comments
 (0)