-
-
Notifications
You must be signed in to change notification settings - Fork 48
43 lines (35 loc) · 1.54 KB
/
hook-dependencies-update.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
on:
schedule:
- cron: '50 8 1,15 * *'
workflow_dispatch:
name: Hook dependency updates
jobs:
hook-dependencies-update:
runs-on: ubuntu-20.04
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true
- name: install runtime dependencies
run: Rscript -e "install.packages(c('renv', 'jsonlite'))"
- name: update PPM URL
run: Rscript inst/update-ppm-url.R
- name: update dependency graph among packages
run: Rscript inst/update-existing-hook-dependencies.R
- name: update existing packages
run: Rscript inst/update-dependency-graph-existing-packages.R
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6.0.4
with:
token: ${{ secrets.PRECOMMIT_HOOK_DEPENDENCY_UPDATE }}
commit-message: Update renv dependencies
branch: hook-dependencies-update
delete-branch: true
assignees: lorenzwalthert
title: 'Hook dependencies update'
body: |
This PR updates the hook dependencies in `renv.lock`, auto-generated by [create-pull-request][1]. Close and re-open this to trigger `on: pull_request` events to circumvent [limitation of GitHub actions](https://github.com/peter-evans/create-pull-request/blob/master/docs/concepts-guidelines.md#push-pull-request-branches-to-a-fork).
[1]: https://github.com/peter-evans/create-pull-request