From: Gleb C. <lna...@ya...> - 2024-12-28 14:18:11
|
Commit: ddd7f08 GitHub URL: https://github.com/SCST-project/scst/commit/ddd7f084c88edc9799621358c1e3e8326365d713 Author: Gleb Chesnokov Date: 2024-12-28T17:14:54+03:00 Log Message: ----------- .github/workflows: Update stable branch version Modified Paths: -------------- .github/workflows/checkpatch_pull.yml | 1 + .github/workflows/checkpatch_push.yml | 1 + .github/workflows/mail_notification.yml | 2 +- .github/workflows/run_regression_tests.yaml | 2 ++ 4 files changed, 5 insertions(+), 1 deletion(-) =================================================================== diff --git a/.github/workflows/checkpatch_pull.yml b/.github/workflows/checkpatch_pull.yml index 992238e..647f75e 100644 --- a/.github/workflows/checkpatch_pull.yml +++ b/.github/workflows/checkpatch_pull.yml @@ -3,6 +3,7 @@ name: Checkpatch upon pull request on: pull_request: branches: + - 3.9.x - master jobs: diff --git a/.github/workflows/checkpatch_push.yml b/.github/workflows/checkpatch_push.yml index a1ea507..464e804 100644 --- a/.github/workflows/checkpatch_push.yml +++ b/.github/workflows/checkpatch_push.yml @@ -3,6 +3,7 @@ name: Checkpatch upon push on: push: branches: + - 3.9.x - master jobs: diff --git a/.github/workflows/mail_notification.yml b/.github/workflows/mail_notification.yml index 415ac08..e796e2f 100644 --- a/.github/workflows/mail_notification.yml +++ b/.github/workflows/mail_notification.yml @@ -4,7 +4,7 @@ name: Mailing list on: push: branches: - - 3.8.x + - 3.9.x - master jobs: diff --git a/.github/workflows/run_regression_tests.yaml b/.github/workflows/run_regression_tests.yaml index b95d205..6794cd5 100644 --- a/.github/workflows/run_regression_tests.yaml +++ b/.github/workflows/run_regression_tests.yaml @@ -3,9 +3,11 @@ name: Run regression tests on: push: branches: + - 3.9.x - master pull_request: branches: + - 3.9.x - master jobs: |