tetragon: Add cgroup rate support #1024
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 docs links | |
on: | |
pull_request: | |
paths: | |
- 'README.md' | |
- 'docs/content/**.md' | |
- '.github/workflows/check-links-pr.yaml' | |
branches: | |
- 'main' | |
jobs: | |
links-checker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
with: | |
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod | |
- name: Setup Hugo | |
uses: peaceiris/actions-hugo@16361eb4acea8698b220b76c0d4e84e1fd22c61d # v2.6.0 | |
with: | |
hugo-version: '0.120.4' | |
extended: true | |
- name: Replace GitHub main links with local branch | |
shell: bash | |
run: | | |
REPO=${{ github.event.pull_request.head.repo.full_name }} | |
BRANCH=${{ github.event.pull_request.head.ref }} | |
find docs/content/ -type f -name "*.md" -exec sed -i "s#/cilium/tetragon/tree/main#/$REPO/tree/$BRANCH#g" {} \; | |
sed -i "s#/cilium/tetragon/tree/main#/$REPO/tree/$BRANCH#g" README.md | |
find docs/content/ -type f -name "*.md" -exec sed -i "s#/cilium/tetragon/blob/main#/$REPO/blob/$BRANCH#g" {} \; | |
sed -i "s#/cilium/tetragon/blob/main#/$REPO/blob/$BRANCH#g" README.md | |
find docs/content/ -type f -name "*.md" -exec sed -i "s#/cilium/tetragon/main#/$REPO/$BRANCH#g" {} \; | |
sed -i "s#/cilium/tetragon/main#/$REPO/$BRANCH#g" README.md | |
git diff -U0 | |
- name: Serve the Hugo website | |
working-directory: docs | |
run: hugo server & | |
- name: Wait for server to be ready | |
uses: nick-fields/retry@7152eba30c6575329ac0576536151aca5a72780e # v3.0.0 | |
with: | |
timeout_seconds: 2 | |
max_attempts: 10 | |
retry_wait_seconds: 3 | |
command: | | |
set -e | |
curl -s http://localhost:1313 > /dev/null | |
- name: Links Checker | |
id: lychee | |
uses: lycheeverse/lychee-action@c053181aa0c3d17606addfe97a9075a32723548a # v1.9.3 | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
with: | |
args: --config .github/lychee.toml --base http://localhost:1313 docs/content README.md | |
fail: true |