ICE "Size expression must be absolute" #54536
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: Commit Access Greeter | |
| on: | |
| issues: | |
| types: | |
| - labeled | |
| permissions: | |
| contents: read | |
| jobs: | |
| commit-access-greeter: | |
| permissions: | |
| issues: write | |
| pull-requests: read | |
| container: | |
| image: "ghcr.io/llvm/amd64/ci-ubuntu-24.04-github-automation:latest@sha256:f4193631559b3a6ccd815280f80fd9211305a3f246e75aec84c6c8caea01d2a9" | |
| if: >- | |
| github.repository_owner == 'llvm' && | |
| github.event.label.name == 'infra:commit-access-request' | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Add comments to issue | |
| env: | |
| GITHUB_TOKEN: ${{ github.token }} | |
| ISSUE_NUMBER: ${{ github.event.issue.number }} | |
| run: | | |
| github-automation.py \ | |
| --token $GITHUB_TOKEN \ | |
| commit-request-greeter \ | |
| --issue-number $ISSUE_NUMBER |