From f336362d2aebb837a589ed4c721e894017c2c589 Mon Sep 17 00:00:00 2001 From: huyhuynh3103 Date: Wed, 20 Mar 2024 11:58:45 +0700 Subject: [PATCH] feat(ci): allow ci runs on feat/* and impl/* --- .github/workflows/create-PR-implement.yml | 2 ++ .github/workflows/test.yml | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/.github/workflows/create-PR-implement.yml b/.github/workflows/create-PR-implement.yml index 85cbbd6e..9bd9ffaa 100644 --- a/.github/workflows/create-PR-implement.yml +++ b/.github/workflows/create-PR-implement.yml @@ -4,6 +4,8 @@ on: branches: - 'implement-feature/**' - 'implement-feature/**/**' + - 'impl/**/**' + - 'impl-feat/**' concurrency: group: ${{ github.workflow }}-${{ github.ref || github.run_id }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad49e528..4863d813 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,12 +7,16 @@ on: - testnet - 'feature/*' - 'features/*' + - 'feat/*' + - 'feats/*' pull_request: branches: - mainnet - testnet - 'feature/*' - 'features/*' + - 'feat/*' + - 'feats/*' env: FOUNDRY_PROFILE: ci