File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919 # @see: https://github.com/actions/virtual-environments
2020 runs-on : ubuntu-latest
2121
22+ # Don't run if the PR is from Dependabot, as it doesn't have access to the repository's secrets.
23+ # Dependabot also only checks for GitHub action dependencies, so it's not necessary to run
24+ # Plugin tests.
25+ if : github.actor != 'dependabot[bot]'
26+
2227 # Environment Variables.
2328 # Accessible by using ${{ env.NAME }}
2429 # Use ${{ secrets.NAME }} to include any GitHub Secrets in ${{ env.NAME }}
Original file line number Diff line number Diff line change 1919 # @see: https://github.com/actions/virtual-environments
2020 runs-on : ubuntu-latest
2121
22+ # Don't run if the PR is from Dependabot, as it doesn't have access to the repository's secrets.
23+ # Dependabot also only checks for GitHub action dependencies, so it's not necessary to run
24+ # Plugin tests.
25+ if : github.actor != 'dependabot[bot]'
26+
2227 # Environment Variables.
2328 # Accessible by using ${{ env.NAME }}
2429 # Use ${{ secrets.NAME }} to include any GitHub Secrets in ${{ env.NAME }}
You can’t perform that action at this time.
0 commit comments