Skip to content

Commit 38106bb

Browse files
committed
👷 automatically update dependencies
1 parent f08cbaf commit 38106bb

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/udd.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
# from https://zenn.dev/kawarimidoll/articles/c68204d248c107#設定ファイル
2+
name: update-deno-dependencies
3+
4+
on:
5+
schedule:
6+
- cron: "0 0 * * *"
7+
8+
jobs:
9+
udd:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: denoland/setup-deno@v1
14+
with:
15+
deno-version: 1.18.2
16+
- name: Update dependencies
17+
run: >
18+
deno run --allow-net --allow-read=deps/ --allow-write=deps/
19+
--allow-run=deno https://deno.land/x/[email protected]/main.ts *.ts
20+
--test="deno test"
21+
- name: Create Pull Request
22+
uses: peter-evans/create-pull-request@v3
23+
with:
24+
commit-message: ":arrow_up: update deno dependencies"
25+
title: Update Deno Dependencies
26+
body: >
27+
Automated updates by [deno-udd](https://github.com/hayd/deno-udd)
28+
and [create-pull-request](https://github.com/peter-evans/create-pull-request)
29+
GitHub action
30+
branch: update-deno-dependencies
31+
author: GitHub <[email protected]>
32+
delete-branch: true

0 commit comments

Comments
 (0)