-
Notifications
You must be signed in to change notification settings - Fork 1
32 lines (32 loc) · 1.02 KB
/
update-dependencies.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
name: Update dependencies
on:
workflow_dispatch:
schedule:
- cron: 0 6 * * *
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
update-dependencies:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- cmd: cargo update
commit-msg: Update Cargo.lock
branch: update/cargo-lock
- cmd: pipx run pre-commit autoupdate
commit-msg: Update .pre-commit-config.yaml
branch: update/pre-commit-config
steps:
- uses: actions/checkout@v3
- run: ${{ matrix.cmd }}
- uses: peter-evans/create-pull-request@v5
with:
token: ${{ secrets.PAT }}
commit-message: ${{ matrix.commit-msg }}
committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
branch: ${{ matrix.branch }}
title: ${{ matrix.commit-msg }}
body: