Skip to content

Commit

Permalink
CI: Fix GHA path filters
Browse files Browse the repository at this point in the history
Just saying `requirements.txt` caught all `requirements.txt` files in
all subdirectories. This patch anchors them to the repository root
folder.
  • Loading branch information
amotl committed Mar 19, 2024
1 parent ea3193c commit 68f8929
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/timeseries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
paths:
- '.github/workflows/timeseries.yml'
- 'topic/timeseries/**'
- 'requirements.txt'
- '/requirements.txt'
push:
branches: [ main ]
paths:
- '.github/workflows/timeseries.yml'
- 'topic/timeseries/**'
- 'requirements.txt'
- '/requirements.txt'

# Allow job to be triggered manually.
workflow_dispatch:
Expand Down

0 comments on commit 68f8929

Please sign in to comment.