Skip to content

Commit 3c5b16b

Browse files
authored
fix: drop main-branch/feature-branch workflows in favor of branch.yml. (#3)
1 parent fd88c77 commit 3c5b16b

File tree

3 files changed

+26
-34
lines changed

3 files changed

+26
-34
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/ci.yml@main
26+
secrets: inherit

.github/workflows/feature-branch.yml

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

.github/workflows/main-branch.yaml

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

0 commit comments

Comments
 (0)