-
Notifications
You must be signed in to change notification settings - Fork 117
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Temporarily disable validating dependabot
- Loading branch information
Showing
1 changed file
with
6 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,11 +148,12 @@ jobs: | |
with: | ||
level: warning | ||
fail_on_error: false | ||
# This gives an error when run on PRs from external repositories, so we skip it. | ||
- name: validate-dependabot | ||
# If this is a PR, check that the PR source is a local branch. Always runs on non-PRs. | ||
if: ${{ !startsWith(github.event_name, 'pull') || !github.event.pull_request.head.repo.fork }} | ||
uses: marocchino/[email protected] | ||
# This is failing with a JSON schema error, see #8028 for details. | ||
#- name: validate-dependabot | ||
# # This gives an error when run on PRs from external repositories, so we skip it. | ||
# # If this is a PR, check that the PR source is a local branch. Always runs on non-PRs. | ||
# if: ${{ !startsWith(github.event_name, 'pull') || !github.event.pull_request.head.repo.fork }} | ||
# uses: marocchino/[email protected] | ||
|
||
codespell: | ||
runs-on: ubuntu-latest | ||
|