From 16e3dae56fb07b63ce3fa67a687b421f2044a762 Mon Sep 17 00:00:00 2001 From: Evgenii Seliavka Date: Mon, 2 Mar 2026 21:09:02 -0500 Subject: [PATCH] Fix GitHub workflow triggers --- .github/workflows/pylint.yml | 5 +++-- .github/workflows/tests.yml | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 3278027..7ee6718 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -2,9 +2,10 @@ name: Pylint on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] + workflow_dispatch: jobs: build: runs-on: ubuntu-latest diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cb58508..4597deb 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,9 +2,10 @@ name: Tests on: push: - branches: [ main ] + branches: [ master ] pull_request: - branches: [ main ] + branches: [ master ] + workflow_dispatch: jobs: pytest: