From 536a5d15a4a8dd831c185441359e89010ea321ff Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 24 Oct 2024 14:26:11 -0400 Subject: [PATCH 1/3] GitHub action run limited to `master` and `dev` branches --- .github/workflows/test.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9a47c52b..9a60a770 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -3,7 +3,16 @@ name: CI -on: [push, pull_request] +on: + push: + branches: + - master + - dev + + pull_request: + branches: + - master + - dev env: TEST_PYTHON_VERSION: 3.9 From 8af7f643eeddc295c83481b685958c0680951837 Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 24 Oct 2024 14:26:18 -0400 Subject: [PATCH 2/3] `CHANGELOG.md` updated --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index caf94c1c..2eab7ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. 4. orinda 5. smila ### Changed +- GitHub actions are limited to the `dev` and `main` branches - `Python 3.13` added to `test.yml` ## [6.3] - 2024-09-19 ### Added From 4853b59af0ef3ba2b7d1102a348c4a0e047bbbbf Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 24 Oct 2024 14:33:11 -0400 Subject: [PATCH 3/3] `CHANGELOG.md` updated --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2eab7ae0..b92bf367 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,7 +15,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. 4. orinda 5. smila ### Changed -- GitHub actions are limited to the `dev` and `main` branches +- GitHub actions are limited to the `dev` and `master` branches - `Python 3.13` added to `test.yml` ## [6.3] - 2024-09-19 ### Added