Skip to content

Commit cc01ff0

Browse files
committed
☕ Check updates and apply via PR
1 parent f11a24e commit cc01ff0

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
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 <noreply@github.com>
28+
delete-branch: true

0 commit comments

Comments
 (0)