update-deno-dependencies #994
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: update-deno-dependencies | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
udd: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- uses: denoland/setup-deno@v1 | |
- name: Update dependencies | |
run: > | |
deno run -A https://deno.land/x/udd/main.ts | |
$(find . -name "*.ts") | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
commit-message: "chore(deps): update deno dependencies" | |
title: Update Deno Dependencies | |
body: > | |
Automated updates by [deno-udd](https://github.com/hayd/deno-udd) | |
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 |