Skip to content

Commit

Permalink
chore: do not run full CI on docs PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding committed Nov 2, 2022
1 parent fc76995 commit b085e07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cypress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
cypress:
name: 'E2E Tests / NodeJS ${{ matrix.node }}'
runs-on: ubuntu-latest
# timeout-minutes: 8
if: github.event.pull_request.draft != true
if: ${{ !startsWith(github.event.head_commit.message, 'docs:') }}

steps:
- name: Check out repository
uses: actions/checkout@master
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:

name: '${{matrix.platform}} / NodeJS ${{ matrix.node }}'
runs-on: ${{matrix.platform}}
if: ${{ !startsWith(github.event.head_commit.message, 'docs:') }}

steps:
- name: Checkout
Expand Down

0 comments on commit b085e07

Please sign in to comment.