Running out of disk space causes ld terminated with signal 7 [Bus error], core dumped
#37615
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: Labeling new issues | |
| on: | |
| issues: | |
| types: ['opened'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| automate-issues-labels: | |
| permissions: | |
| issues: write | |
| runs-on: ubuntu-24.04 | |
| if: github.repository == 'llvm/llvm-project' | |
| steps: | |
| - uses: llvm/actions/issue-labeler@42d80571b13f4599bbefbc7189728b64723c7f78 # main | |
| with: | |
| repo-token: ${{ secrets.ISSUE_SUBSCRIBER_TOKEN }} | |
| configuration-path: .github/new-issues-labeler.yml | |
| include-title: 1 | |
| include-body: 0 | |
| sync-labels: 0 | |
| enable-versioned-regex: 0 |