From 393ad90c84109638082502b410767c193621f079 Mon Sep 17 00:00:00 2001 From: ryanbekhen Date: Fri, 29 Dec 2023 02:23:49 +0700 Subject: [PATCH] Remove push events from workflow triggers The security-check and test-coverage workflows have been updated to no longer trigger on push events to the master branch. These changes limit the workflows to only run on pull requests, streamlining our CI/CD process and saving resources. --- .github/workflows/security-check.yml | 3 --- .github/workflows/test-coverage.yml | 3 --- 2 files changed, 6 deletions(-) diff --git a/.github/workflows/security-check.yml b/.github/workflows/security-check.yml index 167a289..c1589b3 100644 --- a/.github/workflows/security-check.yml +++ b/.github/workflows/security-check.yml @@ -1,9 +1,6 @@ name: "Security Check" on: - push: - branches: - - master pull_request: branches: - master diff --git a/.github/workflows/test-coverage.yml b/.github/workflows/test-coverage.yml index 4bbfe42..20acf4a 100644 --- a/.github/workflows/test-coverage.yml +++ b/.github/workflows/test-coverage.yml @@ -2,9 +2,6 @@ name: Test Coverage run-name: Test Coverage on: - push: - branches: - - master pull_request: branches: - master