Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/stewards-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,26 +16,26 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '20'
node-version: "20"

- name: Install dependencies
run: npm install js-yaml

- name: Run table generator
run: node utils/stewards-table.js

- name: Reset all changes except README.md
run: |
git restore --staged .
git add README.md
git checkout -- .

- name: Create Pull Request
uses: peter-evans/create-pull-request@v5
uses: peter-evans/create-pull-request@v7
with:
commit-message: "Update README table from stewards.yml"
branch: update-readme-table
title: 'chore: update README table from stewards.yml'
body: 'This PR updates the README.md table to reflect changes in stewards.yml.'
add: README.md
title: "chore: update README table from stewards.yml"
body: "This PR updates the README.md table to reflect changes in stewards.yml."
add-paths: README.md
token: ${{ secrets.ACCESS_TOKEN }}