chore(deps): update ghcr.io/chgl/fhir-server-exporter docker tag to v2.1.12 #324
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: check links | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
permissions: read-all | |
jobs: | |
check-links: | |
runs-on: ubuntu-22.04 | |
permissions: | |
issues: write | |
steps: | |
- uses: actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0 | |
- name: run lychee link checker | |
id: lychee | |
uses: lycheeverse/lychee-action@4dcb8bee2a0a4531cba1a1f392c54e8375d6dd81 # tag=v1.5.4 | |
with: | |
fail: true | |
args: "--config=.lychee.toml ." | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: create issue | |
if: ${{ env.lychee_exit_code != 0}} | |
uses: peter-evans/create-issue-from-file@433e51abf769039ee20ba1293a088ca19d573b7f #tag=v4.0.1 | |
with: | |
title: Link Checker Report | |
content-filepath: ./lychee/out.md | |
labels: report, automated issue |