Skip to content

Commit

Permalink
Merge pull request #89 from booxter/remove-pull-jobs
Browse files Browse the repository at this point in the history
Don't run github workflow twice for push and pull_request
  • Loading branch information
booxter authored Jun 2, 2024
2 parents 8862371 + 7c5f212 commit c73e0e1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pre-commit.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: pre-commit
on: [push, pull_request]
on: [pull_request]

jobs:
pre-commit:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Pytest
on: [push, pull_request]
on: [pull_request]
jobs:
pytest:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruff.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Ruff
on: [push, pull_request]
on: [pull_request]
jobs:
ruff:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanity-check.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Sanity Check
on: [push, pull_request]
on: [pull_request]
jobs:
sanity-check:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swagger-validate.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Swagger Validate
on: [push, pull_request]
on: [pull_request]
jobs:
swagger-validate:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swagger.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Swagger
on: [push, pull_request]
on: [pull_request]
jobs:
swagger:
runs-on: ubuntu-latest
Expand Down

0 comments on commit c73e0e1

Please sign in to comment.