170 Call Gitlab CI job to Automate Runtime Release #8
Workflow file for this run
This file contains 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
# This action triggers a GitLab CI job that performs the following: | |
# * Srtool Check | |
# * Subwasm info of the compressed wasm file | |
# * Generate Release Notes | |
# * Propose a Parachain Upgrade | |
name: Release and Propose an Upgrade | |
#on: | |
# pull_request: | |
# types: | |
# - closed | |
# branches: | |
# - 'main' | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
release_check: | |
# This job will only run if: | |
# * the pull request is closed and merged to main branch; | |
# * the pull request has the "release:" in its title | |
# if: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.title, 'release:') }} | |
name: ${{ matrix.chain }} need new release | |
strategy: | |
fail-fast: true | |
matrix: | |
chain: ["AMPLITUDE"] | |
# chain: ["AMPLITUDE", "PENDULUM"] | |
# shouldReleaseAmp: | |
# - ${{ contains(github.event.pull_request.title, 'amplitude') }} | |
# shouldReleasePen: | |
# - ${{ contains(github.event.pull_request.title, 'pendulum') }} | |
# exclude: | |
# - shouldReleaseAmp: false | |
# chain: "AMPLITUDE" | |
# - shouldReleasePen: false | |
# chain: "PENDULUM" | |
runs-on: ubuntu-latest | |
steps: | |
- name: trigger gitlab | |
uses: mb-wali/gitlab-cd-trigger@main | |
with: | |
URL: https://gitlab.com | |
GITLB_TRIGGER_TOKEN: ${{ secrets.GITLABAPI }} | |
PROJECT_ID: '56492543' | |
REF_NAME: 'main' | |
PIPELINE_VARIABLES: '{"${{ matrix.chain }}":Y}' | |