Skip to content

2.3.0-rc.4

2.3.0-rc.4 #39

name: Generate Contributors PNG
on:
push:
paths:
- '.all-contributorsrc'
permissions:
contents: read
jobs:
build:
if: github.ref == 'refs/heads/main' && github.repository == 'processing/p5.js'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 20
- name: Install dependencies
run: npm install canvas
- name: Run contributors-png generator
run: node utils/contributors-png.js
- name: Reset all changes except contributors.png
run: |
git restore --staged .
git add contributors.png
git checkout -- .
- name: Create Pull Request
uses: peter-evans/create-pull-request@22a9089034f40e5a961c8808d113e2c98fb63676 # v7.0.11
with:
commit-message: "Update contributors.png from .all-contributorsrc"
branch: update-contributors-png
title: "chore: update contributors.png from .all-contributorsrc"
body: "This PR updates the contributors.png to reflect changes in .all-contributorsrc"
add-paths: contributors.png
token: ${{ secrets.ACCESS_TOKEN }}