Skip to content

Commit 250e48a

Browse files
Merge commit '32c7cda7ea66b308a541f9cab9f14de7c7550a46'
2 parents 46beeef + 32c7cda commit 250e48a

File tree

2 files changed

+14
-3
lines changed

2 files changed

+14
-3
lines changed

.github/workflows/ci.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1+
name: Continuous Integration
2+
3+
# runs on
4+
# * pushes and pull requests on the "main" (pull request only for specific paths)
5+
# * manual trigger
6+
17
on:
28
push:
3-
branches:
4-
- main
9+
branches: [ "main", "feature/*" ]
10+
11+
pull_request:
12+
branches: [ "main", "feature/*" ]
13+
14+
workflow_dispatch:
15+
516
jobs:
617
build:
718
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55
tags:
66
- "v*.*.*" # Matches stable versions like v1.2.3
77
- "v*.*.*-*" # Matches pre-release versions like v2.0.1-beta
8-
8+
workflow_dispatch:
99
jobs:
1010
build-and-release:
1111
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)