Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/coding-standards.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
# Virtual Environment to use.
# @see: https://github.com/actions/virtual-environments
runs-on: ubuntu-latest

# Don't run if the PR is from Dependabot, as it doesn't have access to the repository's secrets.
# Dependabot also only checks for GitHub action dependencies, so it's not necessary to run
# Plugin tests.
if: github.actor != 'dependabot[bot]'

# Environment Variables.
# Accessible by using ${{ env.NAME }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/tests-backward-compat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
# @see: https://github.com/actions/virtual-environments
runs-on: ubuntu-latest

# Don't run if the PR is from Dependabot, as it doesn't have access to the repository's secrets.
# Dependabot also only checks for GitHub action dependencies, so it's not necessary to run
# Plugin tests.
if: github.actor != 'dependabot[bot]'

# Environment Variables.
# Accessible by using ${{ env.NAME }}
# Use ${{ secrets.NAME }} to include any GitHub Secrets in ${{ env.NAME }}
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
# @see: https://github.com/actions/virtual-environments
runs-on: ubuntu-latest

# Don't run if the PR is from Dependabot, as it doesn't have access to the repository's secrets.
# Dependabot also only checks for GitHub action dependencies, so it's not necessary to run
# Plugin tests.
if: github.actor != 'dependabot[bot]'

# Environment Variables.
# Accessible by using ${{ env.NAME }}
# Use ${{ secrets.NAME }} to include any GitHub Secrets in ${{ env.NAME }}
Expand Down Expand Up @@ -391,7 +396,7 @@ jobs:
needs: tests

# Only run on pull requests, not when merging to main branch
if: github.event_name == 'pull_request'
if: github.event_name == 'pull_request' && github.actor != 'dependabot[bot]'

# Virtual Environment to use.
# @see: https://github.com/actions/virtual-environments
Expand Down
Loading