-
Notifications
You must be signed in to change notification settings - Fork 74
70 lines (60 loc) · 2 KB
/
dependency-manager.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
name: Dependency Manager
on:
workflow_dispatch: # Allow running on-demand
schedule:
# Every Sunday at 1PM UTC
- cron: 0 13 * * 6
env:
PYTHON_VERSION: 3.9
jobs:
upgrade:
name: Weekly dependency upgrade
runs-on: ubuntu-latest
env:
BRANCH_NAME: deps/weekly-upgrade
steps:
- name: Code checkout
uses: actions/checkout@v4
- name: Setup python
uses: actions/setup-python@v4
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Upgrade base dependencies
run: |
pip install -U poetry
poetry update
- name: Upgrade dependencies of demo examples
run: |
pip install -U pip pip-tools
cd examples; pip-compile --upgrade requirements.in
- name: Upgrade pre-commit hooks
run: |
pip install pre-commit
pre-commit autoupdate
- name: Detect changes
id: changes
run: echo "count=$(git status --porcelain=v1 2>/dev/null | wc -l)" >> $GITHUB_OUTPUT
- name: Commit & push changes
if: steps.changes.outputs.count > 0
run: |
git config user.name "github-actions"
git config user.email "github-actions@github.com"
git add .
git commit -m "build(deps): upgrade dependencies"
git push -f origin ${{ github.ref_name }}:$BRANCH_NAME
- name: Open pull request
if: steps.changes.outputs.count > 0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
PR=$(gh pr list --head $BRANCH_NAME --json number -q '.[0].number')
if [ -z $PR ]; then
gh pr create \
--draft \
--head $BRANCH_NAME \
--title "build(deps): upgrade dependencies" \
--body "Full log: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \
--label "dependencies"
else
echo "Pull request already exists, won't create a new one."
fi