Skip to content

Commit

Permalink
Run workflows only if matching files were changed
Browse files Browse the repository at this point in the history
Signed-off-by: Lilly Rose Berner <[email protected]>
  • Loading branch information
LostLuma committed Nov 29, 2024
1 parent 920a95a commit 77ab1a8
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/build.yaml → .github/workflows/build-java.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: build
name: build-java

on: [push, pull_request]
on:
workflow_dispatch:
push:
branches:
- meow
paths-ignore:
- projects/catculator/**
pull_request:
paths-ignore:
- projects/catculator/**

jobs:
build:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
name: build-natives

on: [push, pull_request]
on:
workflow_dispatch:
push:
branches:
- meow
paths:
- projects/catculator/**
pull_request:
paths:
- projects/catculator/**

jobs:
build:
Expand Down

0 comments on commit 77ab1a8

Please sign in to comment.