Skip to content

Commit

Permalink
Change pipelines to run on main commits only
Browse files Browse the repository at this point in the history
  • Loading branch information
kravitsjacob committed Jan 11, 2025
1 parent 43ad2c0 commit 49c1a70
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/publish_testing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Published Package Test

on: [push]
on:
push:
branches:
- main

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/sphinx.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Sphinx build

on: push
on:
push:
branches:
- main

jobs:
build:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/version_testing.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
name: Version Testing

on: [push]
on:
push:
branches:
- main

jobs:
build:
Expand Down

0 comments on commit 49c1a70

Please sign in to comment.