From 73c71b9a0328d726c66b1685f55b00ab8094cf3c Mon Sep 17 00:00:00 2001 From: Yan Song Date: Thu, 20 Apr 2023 08:48:45 +0000 Subject: [PATCH] action: fix smoke test for branch pattern To match `master` and `stable/*` branches at least. Signed-off-by: Yan Song --- .github/workflows/smoke.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/smoke.yml b/.github/workflows/smoke.yml index 0005da487df..f8866239c09 100644 --- a/.github/workflows/smoke.yml +++ b/.github/workflows/smoke.yml @@ -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