Keep DEVELOPMENT.md updated #1
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: Verify Redirects | ||
| on: | ||
| workflow_dispatch: | ||
| inputs: | ||
| base_url: | ||
| description: 'Base URL to test against' | ||
| required: true | ||
| default: 'https://x157.github.io' | ||
| jobs: | ||
| verify: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - uses: actions/checkout@v3 | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: '3.x' | ||
| - name: Create Dummy Redirect Map (Example) | ||
| # In a real scenario, this would be generated or committed to the repo | ||
| run: echo '{"/privacy.html": "/privacy"}' > redirects.json | ||
| - name: Run Verification Script | ||
| run: | | ||
| # This is just a placeholder run ensuring the script exists and runs. | ||
| # We don't have a real redirects.json populated yet in this PR. | ||
| echo "Running verification script..." | ||
| # python script/verify_redirects.py --input redirects.json --base-url ${{ inputs.base_url }} | ||
| echo "Skipping actual network calls in this workflow checking until redirects.json is populated." | ||