[clang++] Assertion `isGenericLambdaCallOperatorSpecialization(CurLSI->CallOperator) && "While computing 'this' capture-type for a generic lambda, when we " "run out of enclosing LSI's, yet the enclosing DC is a " "lambda-call-operator we must be (i.e. Current LSI) in a generic " "lambda call oeprator"' failed. #72312
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 Subscriber | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| permissions: | |
| contents: read | |
| jobs: | |
| auto-subscribe: | |
| runs-on: ubuntu-latest | |
| if: github.repository == 'llvm/llvm-project' | |
| steps: | |
| - name: Checkout Automation Script | |
| uses: actions/checkout@v4 | |
| with: | |
| sparse-checkout: llvm/utils/git/ | |
| ref: main | |
| - name: Setup Automation Script | |
| working-directory: ./llvm/utils/git/ | |
| run: | | |
| pip install --require-hashes -r requirements.txt | |
| - name: Update watchers | |
| working-directory: ./llvm/utils/git/ | |
| # https://docs.github.com/en/actions/security-guides/security-hardening-for-github-actions#using-an-intermediate-environment-variable | |
| env: | |
| LABEL_NAME: ${{ github.event.label.name }} | |
| run: | | |
| python3 ./github-automation.py \ | |
| --token '${{ secrets.ISSUE_SUBSCRIBER_TOKEN }}' \ | |
| issue-subscriber \ | |
| --issue-number '${{ github.event.issue.number }}' \ | |
| --label-name "$LABEL_NAME" |