Skip to content

Commit be59a4e

Browse files
committed
Fix workflow jobs for release-1.2 branch
Signed-off-by: Anil Vishnoi <[email protected]>
1 parent 8d330fa commit be59a4e

File tree

5 files changed

+74
-10
lines changed

5 files changed

+74
-10
lines changed

.github/dependabot.yml

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,67 @@ updates:
127127
target-branch: "release-1.0"
128128
labels:
129129
- "docker dependencies"
130+
131+
# Enable version updates for the following package ecosystems for release-1.2 branch
132+
- package-ecosystem: "npm"
133+
directory: "/"
134+
schedule:
135+
interval: "weekly"
136+
reviewers:
137+
- "instructlab/ui-maintainers"
138+
allow:
139+
- dependency-type: "production"
140+
target-branch: "release-1.2"
141+
labels:
142+
- "npm dependencies"
143+
- "frontend"
144+
groups:
145+
typescript-eslint:
146+
patterns:
147+
- "@typescript-eslint/*"
148+
- typescript-eslint
149+
update-types:
150+
- "minor"
151+
- "patch"
152+
react:
153+
patterns:
154+
- react
155+
- react-dom
156+
update-types:
157+
- "minor"
158+
- "patch"
159+
patternfly:
160+
patterns:
161+
- "@patternfly/*"
162+
- patternfly
163+
update-types:
164+
- "minor"
165+
- "patch"
166+
typescript-libraries:
167+
patterns:
168+
- "@types/*"
169+
update-types:
170+
- "minor"
171+
- "patch"
172+
- package-ecosystem: "github-actions"
173+
directory: "/.github/workflows"
174+
schedule:
175+
interval: "weekly"
176+
reviewers:
177+
- "instructlab/ui-maintainers"
178+
target-branch: "release-1.2"
179+
labels:
180+
- "github-actions"
181+
groups:
182+
actions-deps:
183+
patterns:
184+
- "*"
185+
- package-ecosystem: "docker"
186+
directory: "/"
187+
schedule:
188+
interval: "monthly"
189+
reviewers:
190+
- "instructlab/ui-maintainers"
191+
target-branch: "release-1.2"
192+
labels:
193+
- "docker dependencies"

.github/workflows/actionlint.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@ name: Lint GitHub Actions workflows
44
on:
55
push:
66
branches:
7-
- "main"
8-
- "release-**"
7+
- main
8+
- 'release-**'
99
paths:
1010
- '.github/actions/*.ya?ml'
1111
- '.github/workflows/*.ya?ml'
1212
- '.github/workflows/actionlint.*' # This workflow
1313
pull_request:
1414
branches:
15-
- "main"
16-
- "release-**"
15+
- main
16+
- 'release-**'
1717
paths:
1818
- '.github/actions/*.ya?ml'
1919
- '.github/workflows/*.ya?ml'

.github/workflows/api-server.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ on:
44
push:
55
branches:
66
- main
7-
- release-1.0
7+
- 'release-**'
88
paths:
99
- 'api-server/**'
1010

1111
pull_request:
1212
branches:
1313
- main
14-
- release-1.0
14+
- 'release-**'
1515
paths:
1616
- 'api-server/**'
1717

.github/workflows/lint-jobs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
push:
55
branches:
66
- main
7-
- release-1.0
7+
- 'release-**'
88
pull_request:
99
branches:
1010
- main
11-
- release-1.0
11+
- 'release-**'
1212

1313
concurrency:
1414
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}

.github/workflows/lint-ui.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ on:
44
push:
55
branches:
66
- main
7-
- release-1.0
7+
- 'release-**'
88
paths:
99
- '.github/workflows/lint-ui.yml'
1010
- '**/*'
1111
- '!**/*.md'
1212
pull_request:
1313
branches:
1414
- main
15-
- release-1.0
15+
- 'release-**'
1616
paths:
1717
- '.github/workflows/lint-ui.yml'
1818
- '**/*'

0 commit comments

Comments
 (0)