Skip to content

Commit 24e2ea2

Browse files
committed
chore: Replace Makefile with atmos.yaml
1 parent ca64b46 commit 24e2ea2

File tree

2 files changed

+36
-8
lines changed

2 files changed

+36
-8
lines changed

.github/workflows/branch.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Branch
2+
on:
3+
pull_request:
4+
branches:
5+
- main
6+
- release/**
7+
types: [opened, synchronize, reopened]
8+
push:
9+
branches:
10+
- main
11+
- release/v*
12+
paths-ignore:
13+
- '.github/**'
14+
- 'docs/**'
15+
- 'examples/**'
16+
- 'test/**'
17+
- 'README.md'
18+
19+
permissions:
20+
contents: write
21+
actions: write
22+
23+
jobs:
24+
github-action:
25+
uses: cloudposse-github-actions/.github/.github/workflows/shared-github-action.yml@main
26+
secrets: inherit

.github/workflows/release.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
name: Major Release Tagger
2-
1+
name: Release
32
on:
43
release:
5-
types:
6-
- published
4+
types: [published]
5+
6+
permissions:
7+
id-token: write
8+
contents: write
9+
pull-requests: write
710

811
jobs:
9-
publish:
10-
runs-on: ubuntu-latest
11-
steps:
12-
- uses: cloudposse/github-action-major-release-tagger@2
12+
github-action:
13+
uses: cloudposse-github-actions/.github/.github/workflows/shared-release-branches.yml@main
14+
secrets: inherit

0 commit comments

Comments
 (0)