Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/release-prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -624,3 +624,20 @@ jobs:
run: exit 1
- name: succeed if everything else passed
run: echo "Validation succeeded"

generate-ec-release-notes-pr:
runs-on: ubuntu-latest
needs: [release, release-app]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Generate EC Release Notes PR
env:
GIT_TAG: ${{ needs.get-tag.outputs.tag-name }}
GH_PAT: ${{ secrets.GH_PAT }}
run: |
curl -H "Authorization: token $GH_PAT" \
-H 'Accept: application/json' \
-d "{\"event_type\": \"embedded-cluster-release-notes\", \"client_payload\": {\"version\": \"${GIT_TAG}\"}}" \
"https://api.github.com/repos/replicatedhq/replicated-docs/dispatches"
Loading