Updated the bcrypt description as discussed in #1532 (#1551) #2693
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: Markdown Link Check | |
on: | |
push: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
link-check: | |
runs-on: ubuntu-24.04 | |
env: | |
CI: true | |
steps: | |
- name: Setup Action | |
uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Install dependencies | |
run: npm install | |
- name: Run link check | |
run: npm run link-check | |
- name: Show broken links | |
if: failure() | |
run: | | |
cat log | awk -v RS="FILE:" 'match($0, /(\S*\.md).*\[✖\].*(\d*\slinks\schecked\.)(.*)/, arr ) { print "FILE:"arr[1] arr[3] > "brokenlinks"}' | |
rm -f err log | |
cat brokenlinks | |
links=`cat brokenlinks` | |
links="${links//'%'/'%25'}" | |
links="${links//$'\n'/'%0A'}" | |
links="${links//$'\r'/'%0D'}" | |
echo ::set-output name=links::**Following links are broken:** %0A$links | |
- name: Send comment to PR with broken links | |
if: failure() && github.event_name == 'pull_request' | |
uses: thollander/actions-comment-pull-request@main | |
with: | |
message: ${{ steps.brokenlinks.outputs.links }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |