fix: do not inject env special value to dep manifest managed by webhook #1409
Workflow file for this run
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: | |
push: | |
branches: [ main ] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
check-links: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: lycheeverse/[email protected] | |
with: | |
args: >- | |
-v -n "*.md" "**/*.md" "**/*.mdx" | |
--exclude "http://localhost*" | |
--exclude "^https://logs-prod.*" | |
--exclude ".*your-account.*" | |
--exclude ".*qryn.local.*" | |
fail: true |