bug: Selects have variable width when placed inside container which leads to layout shifting when switching between options #702
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: "Reply to fresh issue" | |
| on: | |
| issues: | |
| types: [opened] | |
| jobs: | |
| reply: | |
| timeout-minutes: 2 | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Comment on fresh issue | |
| uses: badsyntax/github-action-issue-comment@master | |
| if: github.event_name == 'issues' | |
| with: | |
| id: "auto-reply" | |
| action: "create-clean" | |
| template: ".github/workflows/issue-reply.hbs" | |
| issue-number: ${{ github.event.issue.number }} | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| template-inputs: | | |
| { | |
| "user": "${{github.event.issue.user.login}}" | |
| } |