-
Notifications
You must be signed in to change notification settings - Fork 0
71 lines (61 loc) · 1.84 KB
/
udd.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: udd
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "0 6 * * *"
jobs:
update:
permissions: write-all
runs-on: ubuntu-latest
env:
GEMINI_API_KEY: "${{ secrets.GEMINI_API_KEY }}"
steps:
- name: Generate app token
uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.APP_ID }}
private-key: ${{ secrets.PRIVATE_KEY }}
- name: Setup repo
uses: actions/checkout@v4
with:
token: ${{ steps.app-token.outputs.token }}
ref: ${{ github.head_ref }}
# Make sure the value of GITHUB_TOKEN will not be persisted in repo's config
persist-credentials: false
- name: Setup Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
- name: Update dependencies with udd
id: run-deno-udd
env:
NO_COLOR: true
run: |
{
echo 'UDD_RESULT<<EOF'
deno run --allow-all https://deno.land/x/udd/main.ts $(find . -type f | grep -E ".*\.([mc]?(ts|js)|(ts|js)x?)$" -)
echo EOF
} >> $GITHUB_OUTPUT
- name: Check Deno
run: deno task ci
- name: Create pull request
uses: peter-evans/create-pull-request@v5
with:
token: ${{ steps.app-token.outputs.token }}
commit-message: "chore(deps): Update deno dependencies"
title: Update Deno dependencies
body: |-
Some external modules are stale.
<details><summary>Details</summary><div>
```
${{ steps.run-deno-udd.outputs.UDD_RESULT }}
```
</div></details>
branch: udd-update
labels: automerge
author: GitHub <noreply@github.com>
delete-branch: true