-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dependabot/pip/ruff-0.0.239
- Loading branch information
Showing
2 changed files
with
1 addition
and
10 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 |
---|---|---|
|
@@ -20,11 +20,11 @@ jobs: | |
uses: hmarr/[email protected] | ||
with: | ||
github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }} | ||
|
||
# Checkout action is required for token to persist | ||
- name: Enable auto-merge for Dependabot PRs | ||
run: gh pr merge --auto --merge "$PR_URL" # Use Github CLI to merge automatically the PR | ||
env: | ||
PR_URL: ${{github.event.pull_request.html_url}} | ||
GITHUB_TOKEN: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }} | ||
|
||
|
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 |
---|---|---|
|
@@ -62,15 +62,6 @@ jobs: | |
jupyter nbconvert --to python ./docs/tutorials/*.ipynb | ||
for f in docs/tutorials/*.py; do ipython "$f"; done | ||
# if it is run on ubuntu-latest, python 3.9, then create the badge | ||
- name: Pytest coverage comment | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }} | ||
id: coverage-comment | ||
uses: MishaKav/[email protected] | ||
with: | ||
pytest-coverage-path: ./pytest-coverage.txt | ||
github-token: ${{ secrets.PYTEST_COVERAGE }} | ||
|
||
- name: Check the output coverage | ||
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.9' }} | ||
shell: bash | ||
|