Astro.request.headers access when configure allowedDomains for prerendered pages #1920
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: "Issue: Needs Repro" | |
| on: | |
| issues: | |
| types: [ labeled ] | |
| jobs: | |
| reply-labeled: | |
| if: github.repository == 'withastro/astro' | |
| runs-on: depot-ubuntu-24.04-arm-small | |
| steps: | |
| - name: Remove triaging label | |
| if: github.event_name == 'issues' && contains(github.event.issue.labels.*.name, 'needs repro') | |
| env: | |
| GH_TOKEN: ${{ secrets.FREDKBOT_GITHUB_TOKEN }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| REPO: ${{ github.repository }} | |
| run: | | |
| gh issue comment "$ISSUE_NUMBER" --repo "$REPO" --body "Hello @${{ github.event.issue.user.login }}. Please provide a [minimal reproduction](https://stackoverflow.com/help/minimal-reproducible-example) using a GitHub repository or [StackBlitz](https://astro.new/repro). Issues marked with `needs repro` will be closed if they have no activity within 3 days." | |
| gh issue edit "$ISSUE_NUMBER" --repo "$REPO" --remove-label "needs triage" |