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 c052280
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/linters-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,10 @@ 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/$GITHUB_SHA/README.md"
curl -fsSLo README.md "https://raw.githubusercontent.com/nodejs/node/$GITHUB_SHA/README.md"
git diff --no-pager
- run: tools/lint-readme-lists.mjs "$TEAMS"
env:
TEAMS: ${{ tojson(steps.team_members.outputs) }}

0 comments on commit c052280

Please sign in to comment.