Skip to content

Commit 7e62bdc

Browse files
committed
fix workflow trigger syntax
1 parent 8bd9162 commit 7e62bdc

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

.github/workflows/arm-cd.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,10 @@ name: ARM CD
1717

1818
on:
1919
push:
20-
tags: v2.*
20+
tags:
21+
- v2.**
2122
schedule:
22-
cron: '0 8 * * *'
23+
- cron: '0 8 * * *'
2324

2425
jobs:
2526
build:

.github/workflows/arm-ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ name: ARM CI
1818
on:
1919
pull_request:
2020
types: [opened, synchronize, reopened]
21-
branches: [master, r2.*]
21+
branches:
22+
- master
23+
- r2.**
2224

2325
jobs:
2426
build:

0 commit comments

Comments
 (0)