Skip to content

Commit

Permalink
Limiting triggers for Github Actions (#399)
Browse files Browse the repository at this point in the history
  • Loading branch information
HowieG authored Sep 18, 2024
1 parent 992b26f commit 9d805f2
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,15 @@ name: Codecov

on:
push:
branches: [ main ]
branches:
- main
paths:
- 'agentops/**'
pull_request:
branches: [ main ]
branches:
- main
paths:
- 'agentops/**'

jobs:
test:
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/python-testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ on:
push:
branches:
- main
paths:
- 'agentops/**'
- 'tests/**'
pull_request:
branches:
- main
paths:
- 'agentops/**'
- 'tests/**'

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

name: Tach Check

on: [pull_request]
on:
pull_request:
paths:
- 'agentops/**'
- 'tests/**'
- 'examples/**'

jobs:
tach-check:
Expand Down

0 comments on commit 9d805f2

Please sign in to comment.