mirror of
https://github.com/hugo-fixit/FixIt.git
synced 2026-08-24 15:28:57 +00:00
51 lines
1.7 KiB
YAML
51 lines
1.7 KiB
YAML
name: Update libraries from npm
|
|
on:
|
|
schedule:
|
|
# Run at 00:00, on day 1 of the month
|
|
- cron: '0 0 1 * *'
|
|
workflow_dispatch:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
jobs:
|
|
prepare:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
libraries: ${{ steps.list.outputs.libraries_json }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
- name: List libraries
|
|
id: list
|
|
uses: hugo-fixit/librarybot@v1
|
|
with:
|
|
mode: list
|
|
update:
|
|
needs: prepare
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
library: ${{ fromJson(needs.prepare.outputs.libraries) }}
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v7
|
|
- name: Update library
|
|
id: update
|
|
uses: hugo-fixit/librarybot@v1
|
|
with:
|
|
mode: update
|
|
library: ${{ matrix.library }}
|
|
- name: Create Pull Request
|
|
if: steps.update.outputs.changed == 'true'
|
|
uses: peter-evans/create-pull-request@v8
|
|
with:
|
|
title: 'chore(deps): bump ${{ steps.update.outputs.package }} from `${{ steps.update.outputs.from_version }}` to `${{ steps.update.outputs.to_version }}`'
|
|
commit-message: 'chore(deps): bump ${{ steps.update.outputs.package }} from `${{ steps.update.outputs.from_version }}` to `${{ steps.update.outputs.to_version }}`'
|
|
body: |
|
|
Automated update of `${{ steps.update.outputs.package }}` from `${{ steps.update.outputs.from_version }}` to `${{ steps.update.outputs.to_version }}`.
|
|
branch: ${{ steps.update.outputs.pr_branch }}
|
|
base: main
|
|
labels: dependencies
|
|
reviewers: Lruihao
|