Skip to content

Commit

Permalink
Run CI build step on push for owner
Browse files Browse the repository at this point in the history
  • Loading branch information
skydread1 committed Sep 3, 2024
1 parent 0e50ca8 commit 7e5c460
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,15 @@ jobs:
run: clojure -M:web/test-headless

- name: Build main.js
if: github.event.action == 'review_requested' || github.event.action == 'ready_for_review'
if: github.event_name == 'push' || github.event.action == 'review_requested' || github.event.action == 'ready_for_review'
run: clojure -T:build js-bundle

- name: Generate RSS feed
if: github.event.action == 'review_requested' || github.event.action == 'ready_for_review'
if: github.event_name == 'push' || github.event.action == 'review_requested' || github.event.action == 'ready_for_review'
run: clojure -T:build rss-feed

- name: Commit js bundle and rss feed
if: github.event.review.state == 'approved'
if: github.event_name == 'push' || github.event.review.state == 'approved'
uses: EndBug/add-and-commit@v9
with:
add: |
Expand Down

0 comments on commit 7e5c460

Please sign in to comment.