Skip to content

Commit 8e3d94a

Browse files
authored
Merge pull request #4 from lambdalisue/add-udd
Add udd
2 parents c6c6305 + 3d851fc commit 8e3d94a

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed

.github/workflows/udd.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: udd
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
udd:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: denoland/setup-deno@v1
13+
with:
14+
deno-version: "1.x"
15+
- run: |
16+
make tools
17+
make update
18+
- uses: peter-evans/create-pull-request@v3
19+
with:
20+
commit-message: ":package: Update deno dependencies"
21+
title: ":package: Update deno dependencies"
22+
body: |
23+
Automated updates by [deno-udd](https://github.com/hayd/deno-udd)
24+
and [create-pull-request](https://github.com/peter-evans/create-pull-request)
25+
GitHub action
26+
branch: update-deno-dependencies
27+
author: GitHub <[email protected]>
28+
delete-branch: true

deps_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export * from "https://deno.land/std@0.106.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@0.108.0/testing/asserts.ts";

0 commit comments

Comments
 (0)