fix(extensions): prompt for consent on environment changes and sanitize runtime-altering environment variables #34824
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' | |
| on: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['main'] | |
| repository_dispatch: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '00 18 * * *' | |
| jobs: | |
| linkChecker: | |
| if: |- | |
| ${{ github.repository == 'google-gemini/gemini-cli' }} | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - uses: 'actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8' # ratchet:actions/checkout@v5 | |
| with: | |
| persist-credentials: false | |
| - name: 'Link Checker' | |
| id: 'lychee' | |
| uses: 'lycheeverse/lychee-action@885c65f3dc543b57c898c8099f4e08c8afd178a2' # ratchet: lycheeverse/lychee-action@v2.6.1 | |
| with: | |
| args: '--verbose --no-progress --accept 200,503 ./**/*.md' |