Skip to content

Commit

Permalink
Do not run on draft PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
famura committed Mar 20, 2024
1 parent 2aa0284 commit 3844f57
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,9 @@ jobs:
cd:
name: CD
runs-on: ubuntu-latest
if: |
github.event_name == 'push' ||
(github.event_name == 'pull_request' && github.event.pull_request.draft == false)
steps:
- name: Checkout
Expand Down

0 comments on commit 3844f57

Please sign in to comment.