Add member onboarding README section #10
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Update new member files | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
id-token: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Fetch main branch | |
run: git fetch origin main:main | |
- name: Install npm packages | |
run: npm install | |
- name: Update new member files | |
run: bash ./bin/update-new-members | |
- name: Commit member changes, if any | |
run: bash ./bin/commit-member-changes |