test: trigger fresh run for status-icon reference #22
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: Test Log Links | |
| on: [push] | |
| jobs: | |
| test-links: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Plain URLs | |
| run: | | |
| echo "Downloading https://dl.google.com/go/go1.23.6.linux-amd64.tar.gz" | |
| echo "See https://proxy.golang.org/github.com/go-gitea/gitea/@v/v1.23.0.info for details" | |
| echo "Registry: https://registry.npmjs.org/@types/node/-/node-18.19.80.tgz" | |
| echo "Visit https://example.com." | |
| echo "Multiple: https://example.com and https://example.org/path?q=1" | |
| - name: Colored URLs | |
| run: | | |
| echo -e "\033[32mhttps://github.com/go-gitea/gitea/actions\033[0m" | |
| echo -e "\033[1;34mInstalling from https://objects.githubusercontent.com/github-production-release-asset\033[0m" | |
| echo -e "\033[33mWarning: see https://docs.gitea.com/usage/actions for docs\033[0m" | |
| - name: Severity labels | |
| run: | | |
| echo "::error::Failed to fetch https://api.example.com/v2/resource" | |
| echo "::warning::Deprecated API used, see https://docs.example.com/migration" | |
| echo "::notice::Documentation at https://docs.gitea.com/usage/actions/overview" | |
| echo "::debug::Resolved config from https://registry.example.com/config.json" | |
| - name: Commands | |
| run: | | |
| echo "[command]/usr/bin/curl -sL https://storage.googleapis.com/golang/go1.23.6.linux-amd64.tar.gz" |