Skip to content

Commit ee63269

Browse files
authored
Enable workflow for v0.1.0 (#140)
### PR Category CICD ### PR Type Github Workflow ### Description Enable CICD workflow on branch v0.1.0 ### Related Issues None ### Changes - modify trigger condition ### Testing - ### Checklist - [ ] I have run the existing tests and they pass - [ ] I have added tests for my changes (if applicable) - [ ] I have updated the documentation (if applicable)
1 parent 1e2450c commit ee63269

1 file changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,22 @@ name: CI
55

66
on:
77
push:
8-
branches: [main, devops]
8+
branches: [v0.1.0]
99
paths-ignore:
1010
- "**.md"
1111
- "docs/**"
12+
- "examples/**"
13+
- "docker/**"
1214
- "LICENSE"
1315
- ".github/ISSUE_TEMPLATE/**"
1416
- ".github/PULL_REQUEST_TEMPLATE.md"
1517
pull_request:
16-
branches: [main, devops]
18+
branches: [v0.1.0]
1719
paths-ignore:
1820
- "**.md"
1921
- "docs/**"
22+
- "examples/**"
23+
- "docker/**"
2024
- "LICENSE"
2125
- ".github/ISSUE_TEMPLATE/**"
2226
- ".github/PULL_REQUEST_TEMPLATE.md"

0 commit comments

Comments
 (0)