Mercurial
view third_party/emsdk/.github/workflows/create-release.yml @ 279:b3b547563ec7
Add Google connector service and agent wiki
Implement the C/Seobeo Google Drive and Gmail connector with encrypted OAuth storage, Zenbu authentication, browser testing, AI tool discovery, chunked HTTP decoding, and Bazel coverage. Consolidate repository guidance into progressive wiki documentation and enforce arena-first allocation for new first-party C code.
Co-authored-by: Copilot <[email protected]>
Copilot-Session: 84c338fd-0939-4bb3-b7f3-1062eb213e5d
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 17 Aug 2026 22:22:36 -0700 |
| parents | 8d17f6e6e290 |
| children |
line wrap: on
line source
name: Create Release PR on: workflow_dispatch: inputs: lto-sha: required: true type: string nonlto-sha: required: true type: string jobs: create-release-pr: runs-on: ubuntu-latest steps: - name: Checkout repo uses: actions/checkout@v4 - name: Run create_release.py run: python3 scripts/create_release.py -r ${{ inputs.lto-sha }} -a ${{ inputs.nonlto-sha }} --gh-action - name: Create PR id: cpr uses: peter-evans/create-pull-request@v6 with: token: ${{ secrets.EMSCRIPTEN_BOT_TOKEN }} title: Release ${{ env.RELEASE_VERSION }} commit-message: | Release ${{ env.RELEASE_VERSION }} team-reviewers: release-reviewers labels: release body: | With emscripten-releases revisions: https://chromium.googlesource.com/emscripten-releases/+/${{ inputs.lto-sha }} (LTO) https://chromium.googlesource.com/emscripten-releases/+/${{ inputs.nonlto-sha }} (asserts) branch: release_${{ env.RELEASE_VERSION }} delete-branch: true - name: Enable auto-merge run: gh pr merge --squash --auto "${{ steps.cpr.outputs.pull-request-number }}" env: GH_TOKEN: ${{ secrets.EMSCRIPTEN_BOT_TOKEN }}