-
Notifications
You must be signed in to change notification settings - Fork 6
33 lines (28 loc) · 898 Bytes
/
molt.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
name: molt
on:
schedule:
- cron: "0 0 * * 0"
workflow_dispatch:
jobs:
udd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: "1.x"
- name: Update dependencies
run: deno run -A jsr:@molt/cli $(find . -name "*.ts") --write
- name: Create Pull Request
uses: peter-evans/create-pull-request@v6
with:
commit-message: "Update deno dependencies"
title: "Update Deno dependencies"
body: >
Automated updates by [@molt/cli](https://github.com/hasundue/molt)
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