Skip to content

Maintain node-lts.json #365

Maintain node-lts.json

Maintain node-lts.json #365

---
name: Maintain node-lts.json
on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
permissions:
contents: read
jobs:
run:
name: Is node-lts.json outdated? πŸ€”
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
cache: npm
node-version: lts/*
- run: npm ci --ignore-scripts
- run: npm run update:node
- uses: actions/create-github-app-token@v1
id: app-token
if: ${{ env.HAVE_ECOSPARK_APP_ID == 'true' }}
env:
HAVE_ECOSPARK_APP_ID: ${{ secrets.ECOSPARK_APP_ID != '' }}
with:
app-id: ${{ secrets.ECOSPARK_APP_ID }}
private-key: ${{ secrets.ECOSPARK_APP_PRIVATE_KEY }}
- uses: peter-evans/create-pull-request@6d6857d36972b65feb161a90e484f2984215f83e # v6
if: ${{ steps.app-token.outputs.token != '' }}
with:
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
body: I ran `npm run update:node` πŸ§‘β€πŸ’»
branch: actions/create-node-pr
commit-message: 'fix(node-lts.json): πŸ€– ✨'
labels: πŸ€– bot
title: 'fix(node-lts.json): update version'
token: ${{ steps.app-token.outputs.token }}