File tree Expand file tree Collapse file tree 3 files changed +40
-2
lines changed
Expand file tree Collapse file tree 3 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ updates:
3535- package-ecosystem : " github-actions"
3636 directory : " /"
3737 schedule :
38- interval : " weekly"
38+ interval : weekly
3939 open-pull-requests-limit : 10
4040 assignees :
4141 - thenativeweb/internal_dev
Original file line number Diff line number Diff line change 1+ name : Update Poetry Lock
2+
3+ on :
4+ pull_request :
5+ paths :
6+ - ' pyproject.toml'
7+
8+ jobs :
9+ update-poetry-lock :
10+ runs-on : ubuntu-latest
11+ if : github.actor == 'dependabot[bot]'
12+ permissions :
13+ contents : write
14+ pull-requests : write
15+ steps :
16+ - uses : actions/checkout@v4
17+ with :
18+ ref : ${{ github.head_ref }}
19+ token : ${{ secrets.GITHUB_TOKEN }}
20+
21+ - name : Set up Python
22+ uses : actions/setup-python@v4
23+ with :
24+ python-version : ' 3.13'
25+
26+ - name : Install Poetry
27+ uses : snok/install-poetry@v1
28+ with :
29+ version : 1.6.1
30+
31+ - name : Update poetry.lock
32+ run : poetry lock
33+
34+ - name : Commit and push changes
35+ uses : stefanzweifel/git-auto-commit-action@v5
36+ with :
37+ commit_message : " chore: update poetry.lock"
38+ file_pattern : " poetry.lock"
You can’t perform that action at this time.
0 commit comments