Skip to content

Commit

Permalink
Don't run checks on renovate PRs
Browse files Browse the repository at this point in the history
  • Loading branch information
Sporiff committed Feb 26, 2024
1 parent ff2ae25 commit cdb7778
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check_links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
jobs:
check-links:
if: ${{ github.event_name == 'pull_request' }}
if: ${{ github.event_name == 'pull_request' }} && startsWith(github.head_ref, 'renovate/') == false
runs-on: ubuntu-22.04
steps:
- name: Waiting for 200 from the Vercel Preview
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/typos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
typos:
name: Spell Check with Typos
runs-on: ubuntu-latest
if: startsWith(github.head_ref, 'smartling') == false
if: startsWith(github.head_ref, 'smartling') == false || startsWith(github.head_ref, 'renovate/') == false
steps:
- name: Checkout Actions Repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vale.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
vale:
name: Run Vale
runs-on: ubuntu-latest
if: startsWith(github.head_ref, 'smartling') == false
if: startsWith(github.head_ref, 'smartling') == false || startsWith(github.head_ref, 'renovate/') == false
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
- uses: errata-ai/vale-action@reviewdog
Expand Down

0 comments on commit cdb7778

Please sign in to comment.