enable-tls-between-components: add TiProxy for cert-manager (#2929) #1015
Workflow file for this run
This file contains hidden or 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: Links (Fail Fast) | |
| on: | |
| pull_request: | |
| jobs: | |
| linkChecker: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 2 | |
| - name: 'Get a list of changed markdown files to process' | |
| id: changed-files | |
| run: | | |
| CHANGED_FILES=$(git diff-tree --name-only --diff-filter 'AM' -r HEAD^1 HEAD -- "zh/*.md" "en/*.md" | sed -z "s/\n$//;s/\n/' '/g") | |
| echo "all_changed_files=${CHANGED_FILES}" >> $GITHUB_OUTPUT | |
| - name: Download Exclude Path | |
| run: | | |
| curl https://raw.githubusercontent.com/pingcap/docs/master/.lycheeignore -O | |
| - name: Link Checker | |
| if: ${{ steps.changed-files.outputs.all_changed_files }} | |
| uses: lycheeverse/[email protected] | |
| with: | |
| fail: true | |
| args: -E --exclude-mail -i -n -t 45 -- '${{ steps.changed-files.outputs.all_changed_files }}' | |
| env: | |
| GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |