From b1a8ef1dd37b16933ec829734d08e37ab7aef98d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 11 Feb 2023 01:52:46 +0000 Subject: [PATCH 1/2] Bump sphinx-rtd-theme from 1.1.1 to 1.2.0 Bumps [sphinx-rtd-theme](https://github.com/readthedocs/sphinx_rtd_theme) from 1.1.1 to 1.2.0. - [Release notes](https://github.com/readthedocs/sphinx_rtd_theme/releases) - [Changelog](https://github.com/readthedocs/sphinx_rtd_theme/blob/master/docs/changelog.rst) - [Commits](https://github.com/readthedocs/sphinx_rtd_theme/compare/1.1.1...1.2.0) --- updated-dependencies: - dependency-name: sphinx-rtd-theme dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- docs-requirements.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs-requirements.txt b/docs-requirements.txt index 537e0f908b..46c19380e3 100644 --- a/docs-requirements.txt +++ b/docs-requirements.txt @@ -68,7 +68,7 @@ sphinx==3.3.1 # -r docs-requirements.in # sphinx-rtd-theme # sphinxcontrib-trio -sphinx-rtd-theme==1.1.1 +sphinx-rtd-theme==1.2.0 # via -r docs-requirements.in sphinxcontrib-applehelp==1.0.4 # via sphinx @@ -76,6 +76,8 @@ sphinxcontrib-devhelp==1.0.2 # via sphinx sphinxcontrib-htmlhelp==2.0.1 # via sphinx +sphinxcontrib-jquery==2.0.0 + # via sphinx-rtd-theme sphinxcontrib-jsmath==1.0.1 # via sphinx sphinxcontrib-qthelp==1.0.3 @@ -84,8 +86,6 @@ sphinxcontrib-serializinghtml==1.1.5 # via sphinx sphinxcontrib-trio==1.1.2 # via -r docs-requirements.in -tomli==2.0.1 - # via towncrier towncrier==22.12.0 # via -r docs-requirements.in urllib3==1.26.14 From 104ed0beea71b3a689e7ad232dedf2abf2b89340 Mon Sep 17 00:00:00 2001 From: EXPLOSION Date: Sat, 11 Feb 2023 01:57:00 +0000 Subject: [PATCH 2/2] Fix autocommit step --- .github/workflows/ci.yml | 2 +- check.sh | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1584e356f2..d9facabbe1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -127,7 +127,7 @@ jobs: git config user.name 'github-actions[bot]' git config user.email '41898282+github-actions[bot]@users.noreply.github.com' git commit -am "Autoformatter changes" - git push + git push origin "HEAD:${GITHUB_HEAD_REF}" macOS: name: 'macOS (${{ matrix.python }})' diff --git a/check.sh b/check.sh index fbd440521c..8416a9c5d1 100755 --- a/check.sh +++ b/check.sh @@ -33,6 +33,7 @@ pip-compile test-requirements.in pip-compile docs-requirements.in if git status --porcelain | grep -q "requirements.txt"; then + git status --porcelain EXIT_STATUS=1 fi