We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f11a24e commit cc01ff0Copy full SHA for cc01ff0
.github/workflows/udd.yml
@@ -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
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