Skip to content

Commit

Permalink
action: fix smoke test for branch pattern
Browse files Browse the repository at this point in the history
To match `master` and `stable/*` branches at least.

Signed-off-by: Yan Song <imeoer@linux.alibaba.com>
  • Loading branch information
imeoer committed Apr 20, 2023
1 parent 8c90542 commit 04fb92c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/smoke.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Smoke Test

on:
push:
branches: ["**"]
branches: ["**", "stable/**"]
paths-ignore: [ '**.md', '**.png', '**.jpg', '**.svg', '**/docs/**' ]
pull_request:
branches: ["**"]
pull_request_target:
branches: ["**", "stable/**"]
paths-ignore: [ '**.md', '**.png', '**.jpg', '**.svg', '**/docs/**' ]
schedule:
# Run daily sanity check at 03:00 clock UTC
Expand Down

0 comments on commit 04fb92c

Please # to comment.