From 178ea0a7c9b44952c1da42348e72bcf8fe9dc0ee Mon Sep 17 00:00:00 2001 From: Grant Lemons Date: Mon, 9 Oct 2023 11:55:47 -0500 Subject: [PATCH] CI separate push and pull-request triggers --- .github/workflows/nodejs-lint.yaml | 7 +++++-- .github/workflows/python-lint.yaml | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/.github/workflows/nodejs-lint.yaml b/.github/workflows/nodejs-lint.yaml index c74a6a8a..beb27ebc 100644 --- a/.github/workflows/nodejs-lint.yaml +++ b/.github/workflows/nodejs-lint.yaml @@ -1,7 +1,10 @@ name: Lint-Node -on: [push, pull_request] - branches: [main] +on: + push: + branches: [main] + pull_request: + branches: [main] jobs: lint-node: diff --git a/.github/workflows/python-lint.yaml b/.github/workflows/python-lint.yaml index f4d69250..8b7fd651 100644 --- a/.github/workflows/python-lint.yaml +++ b/.github/workflows/python-lint.yaml @@ -1,7 +1,10 @@ name: Lint-Python -on: [push, pull_request] - branches: [main] +on: + push: + branches: [main] + pull_request: + branches: [main] jobs: lint-python: