Skip to content

Commit

Permalink
Do not run workflow on push to non-master branches, or when only `R…
Browse files Browse the repository at this point in the history
…EADME.md` is updated
  • Loading branch information
ReubenFrankel committed Jul 12, 2024
1 parent a7fec2d commit 1aa0b41
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ci_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@

name: Test tap-google-sheets

on: [push, pull_request]
on:
push:
branches: [master]
paths-ignore: [README.md]
pull_request:
paths-ignore: [README.md]

jobs:
linting:
Expand Down

0 comments on commit 1aa0b41

Please sign in to comment.