[go: nahoru, domu]

Skip to content

Commit

Permalink
fix workflow trigger syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
mseth10 committed May 19, 2022
1 parent 8bd9162 commit 7e62bdc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/arm-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ name: ARM CD

on:
push:
tags: v2.*
tags:
- v2.**
schedule:
cron: '0 8 * * *'
- cron: '0 8 * * *'

jobs:
build:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/arm-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ name: ARM CI
on:
pull_request:
types: [opened, synchronize, reopened]
branches: [master, r2.*]
branches:
- master
- r2.**

jobs:
build:
Expand Down

0 comments on commit 7e62bdc

Please sign in to comment.