mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
This commit upgrades Node.js version from v20.18.1 to v20.19.2. This version incorporates security patches that address known vulnerabilities, improving the overall security posture. Co-authored-by: Peter Dave Hello <hsu@peterdavehello.org>
59 lines
1.9 KiB
YAML
59 lines
1.9 KiB
YAML
name: Update Contributors
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
workflow_dispatch: # Allows manual triggering
|
|
|
|
env:
|
|
NODE_VERSION: 20.19.2
|
|
PNPM_VERSION: 10.8.1
|
|
|
|
jobs:
|
|
update-contributors:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write # Needed for pushing changes
|
|
pull-requests: write # Needed for creating PRs
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
- name: Install pnpm
|
|
uses: pnpm/action-setup@v4
|
|
with:
|
|
version: ${{ env.PNPM_VERSION }}
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
cache: 'pnpm'
|
|
- name: Disable Husky
|
|
run: |
|
|
echo "HUSKY=0" >> $GITHUB_ENV
|
|
git config --global core.hooksPath /dev/null
|
|
- name: Install dependencies
|
|
run: pnpm install
|
|
- name: Update contributors and format
|
|
run: |
|
|
pnpm update-contributors
|
|
npx prettier --write README.md
|
|
if git diff --quiet; then echo "changes=false" >> $GITHUB_OUTPUT; else echo "changes=true" >> $GITHUB_OUTPUT; fi
|
|
id: check-changes
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Create Pull Request
|
|
if: steps.check-changes.outputs.changes == 'true'
|
|
uses: peter-evans/create-pull-request@v5
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
commit-message: "docs: update contributors list [skip ci]"
|
|
committer: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>"
|
|
branch: update-contributors
|
|
delete-branch: true
|
|
title: "Update contributors list"
|
|
body: |
|
|
Automated update of contributors list and related files
|
|
|
|
This PR was created automatically by a GitHub Action workflow and includes all changed files.
|
|
base: main
|