Skip to content

Commit 5a14955

Browse files
committed
fix: (workflow) Invalid action input
The action was taking in key add which wasn't available, so updated to correct key
1 parent 8b260bb commit 5a14955

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/stewards-update.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,26 +16,26 @@ jobs:
1616
- name: Setup Node
1717
uses: actions/setup-node@v4
1818
with:
19-
node-version: '20'
19+
node-version: "20"
2020

2121
- name: Install dependencies
2222
run: npm install js-yaml
2323

2424
- name: Run table generator
2525
run: node utils/stewards-table.js
26-
26+
2727
- name: Reset all changes except README.md
2828
run: |
2929
git restore --staged .
3030
git add README.md
3131
git checkout -- .
32-
32+
3333
- name: Create Pull Request
34-
uses: peter-evans/create-pull-request@v5
34+
uses: peter-evans/create-pull-request@v7
3535
with:
3636
commit-message: "Update README table from stewards.yml"
3737
branch: update-readme-table
38-
title: 'chore: update README table from stewards.yml'
39-
body: 'This PR updates the README.md table to reflect changes in stewards.yml.'
40-
add: README.md
38+
title: "chore: update README table from stewards.yml"
39+
body: "This PR updates the README.md table to reflect changes in stewards.yml."
40+
add-paths: README.md
4141
token: ${{ secrets.ACCESS_TOKEN }}

0 commit comments

Comments
 (0)