From f5ce5a8ac37a69525a8f57ee3ae4b05de5176c8d Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 24 Oct 2024 14:58:57 -0400 Subject: [PATCH 1/2] 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 7d5747e..24c7a6f 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 f5f3ffd71260055c8c4db295500a5f1e054449df Mon Sep 17 00:00:00 2001 From: AHReccese Date: Thu, 24 Oct 2024 14:59:07 -0400 Subject: [PATCH 2/2] `CHANGELOG.md` updated --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1df47cd..39bb234 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added - Command Line Interface (CLI) +### Changed +- GitHub actions are limited to the `dev` and `master` branches ## [1.3] - 2024-09-09 ### Added - `deprecated` function