Skip to content
Snippets Groups Projects
Unverified Commit 726589d8 authored by Arkadi Yaroslavtsev's avatar Arkadi Yaroslavtsev Committed by GitHub
Browse files

Pass enterprise version to cloud issues (#44701)

parent a03d3a85
No related branches found
No related tags found
No related merge requests found
......@@ -536,13 +536,16 @@ jobs:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.METABASE_AUTOMATION_USER_TOKEN }}
script: |
script: | # js
const version = '${{ inputs.version }}';
const enterpriseVersion = version.replace(/^v0\./, "v1.");
github.rest.repos.createDispatchEvent({
owner: '${{ github.repository_owner }}',
repo: '${{ vars.OPS_REPO }}',
event_type: 'create-release-issues',
client_payload: {
version: '${{ inputs.version }}'
version: enterpriseVersion,
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment