From e73d2e3498d7d091fad17785ddc85d8eef447bfb Mon Sep 17 00:00:00 2001 From: AmirHosein Rostami <32750909+AHReccese@users.noreply.github.com> Date: Sat, 26 Oct 2024 20:56:45 +0330 Subject: [PATCH] Add/limit gh action run (#106) * GitHub action run limited to `master` and `dev` branches * `CHANGELOG.md` updated --- .github/workflows/test.yml | 11 ++++++++++- CHANGELOG.md | 1 + 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1d04f1e..90a8f17 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 diff --git a/CHANGELOG.md b/CHANGELOG.md index d48db74..98b9761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - `--silent` argument - `clear_screen` function ### Changed +- GitHub actions are limited to the `dev` and `master` branches - Restart mode updated - Exit bug fixed - Messages and templates moved to `params.py`