-
Notifications
You must be signed in to change notification settings - Fork 2
34 lines (28 loc) · 1003 Bytes
/
udd.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
---
name: UpdateDenoDependencies
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *" # modify to your convenient time
jobs:
update_dependencies:
runs-on: ubuntu-latest
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Setup Deno
uses: denoland/setup-deno@v1
- name: Run Update Deno Dependencies
run: deno run -A https://deno.land/x/udd/main.ts ./config/nvim/hooks/{ddu,ddc}/helper/deps.ts
- name: Create Pull Request
uses: peter-evans/create-pull-request@v3
with:
commit-message: "chore(deps): update deno dependencies"
title: Update Deno Dependencies
body: >
Automated updates by [deno-udd](https://github.com/hayd/deno-udd)
and [create-pull-request](https://github.com/peter-evans/create-pull-request)
GitHub action
branch: update-deno-dependencies
author: GitHub <[email protected]>
delete-branch: true