From 6a59591d282035ec57952bc94898eabd9288e472 Mon Sep 17 00:00:00 2001 From: "Sean P. Kelly" Date: Thu, 3 Aug 2023 22:10:49 +0000 Subject: [PATCH] Enable github actions on feature branch --- .github/workflows/build.yml | 2 +- .github/workflows/cache.yml | 2 +- .github/workflows/golangci-lint.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 38f192f8067..b496537b2e2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -1,7 +1,7 @@ name: Build on: pull_request: - branches: [develop] + branches: [develop, ootb-settings-extensions] # Here we list file types that don't affect the build and don't need to use # up our Actions runners. paths-ignore: diff --git a/.github/workflows/cache.yml b/.github/workflows/cache.yml index 2c7399cc3f6..74ed2ec6ad4 100644 --- a/.github/workflows/cache.yml +++ b/.github/workflows/cache.yml @@ -3,7 +3,7 @@ name: CacheDepsAndTools on: push: - branches: [develop] + branches: [develop, ootb-settings-extensions] paths: - '.github/**' - 'sources/Cargo.lock' diff --git a/.github/workflows/golangci-lint.yaml b/.github/workflows/golangci-lint.yaml index b1b1f4fc747..ca08fa8cf2b 100644 --- a/.github/workflows/golangci-lint.yaml +++ b/.github/workflows/golangci-lint.yaml @@ -1,7 +1,7 @@ name: golangci-lint on: pull_request: - branches: [develop] + branches: [develop, ootb-settings-extensions] # Only run this workflow if Go files or this workflow have been modified paths: - '**.go'