Skip to content

Commit

Permalink
fixup! fixup! tools: add workflow to ensure README lists are in syn…
Browse files Browse the repository at this point in the history
…c with gh teams
  • Loading branch information
aduh95 committed Jul 17, 2024
1 parent e50561e commit 190d1b9
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/linters-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GH_USER_TOKEN }}
- name: Get modified README
if: github.event_name != 'push'
run: curl -fsSLo README.md "https://raw.githubusercontent.com/nodejs/node/$GITHUB_SHA/README.md"
run: |
echo "https://raw.githubusercontent.com/nodejs/node/$SHA/README.md"
curl -fsSLo README.md "https://raw.githubusercontent.com/nodejs/node/$SHA/README.md"
git --no-pager diff
env:
SHA: ${{ github.event.pull_request.merge_commit_sha }}
- run: tools/lint-readme-lists.mjs "$TEAMS"
env:
TEAMS: ${{ tojson(steps.team_members.outputs) }}

0 comments on commit 190d1b9

Please sign in to comment.