Skip to content

Commit

Permalink
Unify conditions for build actions
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewkaney committed Jan 16, 2024
1 parent 36d94a8 commit 3e3d28e
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/listener-build-linux.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: build-listener-linux

on: [push, pull_request]
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"

jobs:
build:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/listener-build-macosx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: build-listener-macosx

on: [push, pull_request]
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"

jobs:
build:
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/listener-build-windows.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: build-listener-windows

on: [push, pull_request]
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"

jobs:
build:
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/nix.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# A set of CI jobs for checking the Nix flake.

name: "nix"

on:
pull_request:
push:
branches:
- master
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"

jobs:
cancel-previous-runs:
Expand Down

0 comments on commit 3e3d28e

Please sign in to comment.