From 41fc231feb01064f88a79ca7d9d13fd7d9c7fba8 Mon Sep 17 00:00:00 2001 From: James Estevez Date: Fri, 29 Jul 2022 10:55:06 -0700 Subject: [PATCH 1/2] Update feature_test.yml to use setup-python@v4 --- .github/workflows/feature_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/feature_test.yml b/.github/workflows/feature_test.yml index e3dd76e..b93bb48 100644 --- a/.github/workflows/feature_test.yml +++ b/.github/workflows/feature_test.yml @@ -13,7 +13,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup Python 3.8 - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: 3.8 - name: Install CumulusCI From cd7164bbb7b3dc4bdea2a973d917108120235cc5 Mon Sep 17 00:00:00 2001 From: James Estevez Date: Fri, 29 Jul 2022 11:36:07 -0700 Subject: [PATCH 2/2] Update feature_test workflow Additional changes for this file: - Run on PR synchonize regardless of branch name - Switch to ubuntu premium runner (macos runners will stop working 2022-08-31) --- .github/workflows/feature_test.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/feature_test.yml b/.github/workflows/feature_test.yml index b93bb48..885f46e 100644 --- a/.github/workflows/feature_test.yml +++ b/.github/workflows/feature_test.yml @@ -1,15 +1,17 @@ name: Tests on: + workflow_dispatch: + pull_request: + types: [opened, synchronize, reopened] # Default push: branches: - main - - feature/** jobs: tests: name: run feature tests - runs-on: macos-latest + runs-on: sfdc-ubuntu-latest steps: - uses: actions/checkout@v2 - name: Setup Python 3.8