This PR add several features to release automation:
1. The existing tag-release job has an output that indicates whether the
triggering commit
is a release (i.e. whether it matches the regex)
2. The new followup job runs a new script which fetches the recent
emscripten-releases
revisions, reads the DEPS file from the 'latest' release in
emscripten-releases-tags.json
to find the corresponding emscripten revision and writes it into the
environment
2. The final step reads the emscripten revision from the environment and
creates a
workflow_dispatch event to run the tag-release.yml job on the emscripten
repo
33 lines
979 B
YAML
33 lines
979 B
YAML
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 ${{ inputs.lto-sha }} ${{ inputs.nonlto-sha }} --action
|
|
- name: Create PR
|
|
id: cpr
|
|
uses: peter-evans/create-pull-request@v6
|
|
with:
|
|
title: Release ${{ env.RELEASE_VERSION }}
|
|
commit-message: |
|
|
Release ${{ env.RELEASE_VERSION }}
|
|
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)
|
|
delete-branch: true
|