feat(runner): isolate structured workflows in one-attempt Kubernetes Pods #1394
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: "Generate Labels" | |
| on: | |
| - pull_request | |
| - issues | |
| jobs: | |
| label: | |
| name: "Label PR based on title" | |
| runs-on: ubuntu-24.04 | |
| permissions: | |
| contents: read | |
| issues: write | |
| pull-requests: write | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 | |
| - name: Label PR based on title | |
| uses: srvaroa/labeler@9c29ad1ef33d169f9ef33c52722faf47a566bcf3 # v1 (moving major; no patch-level release tag at this SHA) | |
| with: | |
| config_path: .github/labeler.yml | |
| use_local_config: false | |
| fail_on_error: false | |
| env: | |
| GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |