Fix compilation error in holographic_transport.rs #11
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: Jules Auto-Integrator | |
| on: | |
| pull_request: | |
| branches: [ "main" ] | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| wait-for-jules: | |
| name: Wait for Jules | |
| runs-on: ubuntu-latest | |
| if: contains(github.event.pull_request.body, 'PR created automatically by Jules') || contains(github.event.pull_request.labels.*.name, 'jules') | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.10' | |
| - name: Install dependencies | |
| run: pip install requests | |
| - name: Await Jules Session Completion | |
| run: python scripts/monitor_jules.py | |
| env: | |
| JULES_API_KEY: ${{ secrets.JULES_API_KEY }} | |
| REPO_OWNER: ${{ github.repository_owner }} | |
| REPO_NAME: ${{ github.event.repository.name }} | |
| - name: Set PR mergeable | |
| run: | | |
| # Wait for branch to be mergeable | |
| until gh pr view $PR_URL --json mergeable --jq '.mergeable' | grep -q "true"; do | |
| sleep 5 | |
| done | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| enable-auto-merge: | |
| name: Queue for Integration | |
| runs-on: ubuntu-latest | |
| needs: wait-for-jules | |
| if: contains(github.event.pull_request.body, 'PR created automatically by Jules') || contains(github.event.pull_request.labels.*.name, 'jules') | |
| steps: | |
| - name: Enable GitHub Auto-Merge | |
| run: gh pr merge --auto --merge "$PR_URL" | |
| env: | |
| PR_URL: ${{ github.event.pull_request.html_url }} | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |