fix: make hscan
return flat list of entries (#1300)
#2866
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 compat.md | |
on: | |
push: | |
branches: [main] | |
concurrency: | |
group: ${{ github.workflow }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
format: | |
name: Should compat.md be updated? 🤔 | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # for gr2m/create-or-update-pull-request-action to push local changes | |
pull-requests: write # for gr2m/create-or-update-pull-request-action to create a PR | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
node-version: lts/* | |
- run: npm ci --no-scripts | |
- run: node scripts/update-compat && npx prettier --write compat.md | |
- uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5 | |
with: | |
author: github-actions <41898282+github-actions[bot]@users.noreply.github.com> | |
body: I ran `node scripts/update-compat && npx prettier --write compat.md` 🧑💻 | |
branch: actions/updatecompat | |
commit-message: 'docs(compat.md): 🤖 ✨' | |
labels: 🤖 bot | |
title: 'docs(compat.md): 🤖 ✨' | |
token: ${{ secrets.GH_TOKEN }} |