-
Notifications
You must be signed in to change notification settings - Fork 141
49 lines (42 loc) · 1.5 KB
/
dependabot-pr.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
name: Dependabot PR
on:
pull_request:
branches:
- master
jobs:
dependabot:
timeout-minutes: 10
runs-on: ubuntu-latest
if: github.triggering_actor == 'dependabot[bot]'
steps:
- name: checkout
uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.PAT }}
- name: update code
run: |
input="${{ github.event.pull_request.title }}"
regex="[Bb]ump (.*) from (.*) to (.*)"
if [[ ! "$input" =~ $regex ]]; then
echo "unexpected pattern"
exit 1
fi
crate_name="${BASH_REMATCH[1]}"
old_version="${BASH_REMATCH[2]}"
new_version="${BASH_REMATCH[3]}"
echo "crate_name: $crate_name, old_version: $old_version, new_version: $new_version"
./scripts/cargo-for-all-lock-files.sh -- update -p $crate_name:$old_version --precise $new_version || \
./scripts/cargo-for-all-lock-files.sh -- update -p $crate_name --precise $new_version || \
./scripts/cargo-for-all-lock-files.sh -- tree
- name: push
run: |
if [ -z "$(git status --porcelain)" ]; then
echo "✅ Nothing to update"
else
git config user.email "49699333+dependabot[bot]@users.noreply.github.com"
git config user.name "dependabot[bot]"
git add **/Cargo.lock
git commit -am "Update all Cargo files"
git push
fi