Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into be_gone
Browse files Browse the repository at this point in the history
  • Loading branch information
lord-haffi committed Nov 7, 2023
2 parents 9298e66 + 4fe9c79 commit 32132f9
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/dependabot_automerge.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Dependabot auto-approve / -merge
on: pull_request

jobs:
dependabot:
permissions:
contents: write
pull-requests: write
runs-on: ubuntu-latest
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
- name: Enable auto-merge for Dependabot PRs
run: gh pr merge --auto --squash "$PR_URL"
6 changes: 5 additions & 1 deletion dev_requirements/requirements-formatting.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pip-compile requirements-formatting.in
#
black==23.9.1
black==23.10.1
# via -r dev_requirements/requirements-formatting.in
click==8.1.3
# via black
Expand All @@ -18,3 +18,7 @@ pathspec==0.11.0
# via black
platformdirs==3.1.0
# via black
tomli==2.0.1
# via black
typing-extensions==4.8.0
# via black
4 changes: 4 additions & 0 deletions dev_requirements/requirements-tests.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
#
# pip-compile requirements-tests.in
#
exceptiongroup==1.1.3
# via pytest
iniconfig==2.0.0
# via pytest
packaging==23.2
Expand All @@ -12,3 +14,5 @@ pluggy==1.3.0
# via pytest
pytest==7.4.3
# via -r dev_requirements/requirements-tests.in
tomli==2.0.1
# via pytest

0 comments on commit 32132f9

Please sign in to comment.