Skip to content

Commit

Permalink
Merge branch 'master' into onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
Lulalaby committed Jul 27, 2023
2 parents 97d8f3e + 0763261 commit c7741ac
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/version-updates.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Version Update Auto Merge
on: pull_request

permissions:
contents: write
pull-requests: write

jobs:
auto-merge:
runs-on: ubuntu-latest
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
- run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
4 changes: 2 additions & 2 deletions requirements/dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
-r _.txt
pylint~=2.17.4
pylint~=2.17.5
pytest~=7.4.0
pytest-asyncio~=0.21.0
pytest-asyncio~=0.21.1
# pytest-order~=1.0.1
mypy~=1.4.1
coverage~=7.2
Expand Down

0 comments on commit c7741ac

Please sign in to comment.