Skip to content

Commit

Permalink
feat: removed path filters on workflow triggers
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
EliSauder committed Oct 31, 2024
1 parent 3997f1e commit 3c87dc8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 19 deletions.
13 changes: 0 additions & 13 deletions .github/workflows/build-microzig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/publish-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3c87dc8

Please sign in to comment.