Last active
July 31, 2024 12:51
-
-
Save myobie/671d2f2a1e503efa0c05e7b865c26a9d to your computer and use it in GitHub Desktop.
Don't run GitHub Actions for pull requests that are drafts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v2 | |
- run: … |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@mikamikaWolt are you sure the if statement on line 15 isn't working? The event type should not be push, so then it will only run if it's not in draft. Last I tried this, it worked for me, but it also has been a while...