From 3c87dc898c60359dfc219e3caf5508d076133c7e Mon Sep 17 00:00:00 2001 From: EliSauder <24995216+EliSauder@users.noreply.github.com> Date: Wed, 30 Oct 2024 17:56:46 -0700 Subject: [PATCH] feat: removed path filters on workflow triggers This is to help reduce the complexity of the workflows by removing a point of maintenance and potential confusion when trying to figure out why somethings ran but others did not. --- .github/workflows/build-microzig.yml | 13 ------------- .github/workflows/publish-website.yml | 6 ------ 2 files changed, 19 deletions(-) diff --git a/.github/workflows/build-microzig.yml b/.github/workflows/build-microzig.yml index 4fe559a6f..8fd53c781 100644 --- a/.github/workflows/build-microzig.yml +++ b/.github/workflows/build-microzig.yml @@ -3,21 +3,8 @@ name: Build Microzig on: push: branches: [main] - paths: - - .github/** - - build.zig* - - tools/** - - core/** - - port/** - - examples/** pull_request: branches: [main] - paths: - - build.zig* - - tools/** - - core/** - - port/** - - examples/** jobs: build-microzig: diff --git a/.github/workflows/publish-website.yml b/.github/workflows/publish-website.yml index b3f02afd1..2ccbcae26 100644 --- a/.github/workflows/publish-website.yml +++ b/.github/workflows/publish-website.yml @@ -7,15 +7,9 @@ on: push: branches: - main - paths: - - .github/** - - website/** pull_request: branches: - main - paths: - - .github/** - - website/** jobs: # Build the project to ensure it works. Also to get the binaries.