Skip to content

Commit

Permalink
Merge pull request #146 from Fdawgs/ci/draft
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Nov 9, 2021
2 parents 10b1256 + f0105cf commit 1149146
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Expand Up @@ -17,7 +17,10 @@ on:
jobs:
cleanup-runs:
name: Clean-Up Running Instances
if: "!startsWith(github.ref, 'refs/tags/') && github.ref != 'refs/heads/master'"
if: >
github.event.pull_request.draft == false &&
!startsWith(github.ref, 'refs/tags/') &&
github.ref != 'refs/heads/master'
runs-on: ubuntu-latest
steps:
- uses: rokroskar/workflow-run-cleanup-action@master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/spell-check.yml
Expand Up @@ -11,6 +11,7 @@ on:
jobs:
spellcheck:
name: Spellcheck with Typo CI
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.5
Expand Down

0 comments on commit 1149146

Please sign in to comment.