fix(ui): align hidden output badge with source badges #845
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: Label PRs | |
| on: | |
| pull_request: | |
| types: [opened, synchronize] | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| label: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/labeler@v6 | |
| with: | |
| sync-labels: false | |
| # Apply quill label for Quill Agent PRs | |
| - uses: actions/github-script@v8 | |
| with: | |
| script: | | |
| const body = context.payload.pull_request.body || ''; | |
| const author = context.payload.pull_request.user.login; | |
| if ((author === 'rgbkrk' || author === 'quillaid') && | |
| (body.includes('agent Quill') || body.includes('agent, Quill'))) { | |
| await github.rest.issues.addLabels({ | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| issue_number: context.issue.number, | |
| labels: ['quill'] | |
| }); | |
| } |