Skip to content

Commit cc6a73d

Browse files
authored
chore: Replace Makefile with atmos.yaml (#4)
1 parent 8f9bd8d commit cc6a73d

File tree

4 files changed

+40
-90
lines changed

4 files changed

+40
-90
lines changed

.github/workflows/auto-readme.yml

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

.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/feature-branch.yml

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

.github/workflows/release.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
name: Release
2+
on:
3+
release:
4+
types: [published]
5+
6+
permissions:
7+
id-token: write
8+
contents: write
9+
pull-requests: write
10+
11+
jobs:
12+
github-action:
13+
uses: cloudposse-github-actions/.github/.github/workflows/shared-release-branches.yml@main
14+
secrets: inherit

0 commit comments

Comments
 (0)