Skip to content

molt

molt #2

Workflow file for this run

# =============================================================================
# File : molt.yml
# Author : yukimemi
# Last Change : 2024/07/06 21:31:40.
# =============================================================================
name: molt
on:
workflow_dispatch:
push:
branches:
- main
schedule:
- cron: "0 6 * * *"
jobs:
update:
permissions: write-all
runs-on: ubuntu-latest
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 molt
id: run-deno-molt
env:
NO_COLOR: true
run: |
{
echo 'MOLT_RESULT<<EOF'
deno task update:write
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-molt.outputs.MOLT_RESULT }}
```
</div></details>
branch: molt-update
labels: automerge
author: GitHub <[email protected]>
delete-branch: true