diff options
author | Ezekiel Smith <ezekielsmith@protonmail.com> | 2022-03-02 11:48:45 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-02 11:48:45 +1100 |
commit | ca211558b5a4ee8b0dec3471c92f952002216532 (patch) | |
tree | d020dd594e5f634b1e708adb2b3506118c221b23 | |
parent | 9020f632b254c032365288f312330ad194f680bf (diff) | |
parent | 3a03f908312afe86222215232cf2e32079e2649d (diff) | |
download | PrismLauncher-ca211558b5a4ee8b0dec3471c92f952002216532.tar.gz PrismLauncher-ca211558b5a4ee8b0dec3471c92f952002216532.tar.bz2 PrismLauncher-ca211558b5a4ee8b0dec3471c92f952002216532.zip |
Merge pull request #216 from txtsd/ignore_paths
Don't build when updating non-code
-rw-r--r-- | .github/workflows/trigger_builds.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/trigger_builds.yml b/.github/workflows/trigger_builds.yml index 1dfc728e..1561b9d6 100644 --- a/.github/workflows/trigger_builds.yml +++ b/.github/workflows/trigger_builds.yml @@ -4,7 +4,17 @@ on: push: branches-ignore: - 'stable' + paths-ignore: + - '**.md' + - '**/LICENSE' + - 'flake.lock' + - '**.nix' pull_request: + paths-ignore: + - '**.md' + - '**/LICENSE' + - 'flake.lock' + - '**.nix' workflow_dispatch: jobs: |