Skip to content
Snippets Groups Projects
Unverified Commit c7696887 authored by Ryan Laurie's avatar Ryan Laurie Committed by GitHub
Browse files

Update release script to trigger ops issue creation (#39634)

* update release script to trigger ops issue creation

* update secret vars
parent 5258ec54
Branches
Tags
No related merge requests found
......@@ -500,6 +500,24 @@ jobs:
}
});
trigger-cloud-issues:
needs: push-tags
runs-on: ubuntu-22.04
timeout-minutes: 10
steps:
- uses: actions/github-script@v7
with:
github-token: ${{ secrets.METABASE_AUTOMATION_USER_TOKEN }}
script: |
github.rest.repos.createDispatchEvent({
owner: '${{ github.repository_owner }}',
repo: '${{ vars.OPS_REPO }}',
event_type: 'create-release-issues',
client_payload: {
version: '${{ inputs.version }}'
}
});
draft-release-notes:
if: ${{ inputs.skip-release-notes != true }}
needs: push-tags
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment