forked from danskernesdigitalebibliotek/dpl-react
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (38 loc) · 1.51 KB
/
create-cms-pr.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: Create CMS PR
on:
workflow_run:
workflows: ["Create release on branch changes"]
types:
- completed
jobs:
invoke-external-pr-workflow:
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v4
with:
name: release-info.json
github-token: ${{ secrets.GITHUB_TOKEN }}
run-id: ${{ github.event.workflow_run.id }}
- name: Set env variables
run: |
RELEASE_BRANCH=$(jq -r '.release_branch' release-info.json)
RELEASE_DOWNLOAD_URL=$(jq -r '.release_download_url' release-info.json)
DEPENDENCY_PACKAGE=$(jq -r '.dependency_package' release-info.json)
echo "RELEASE_BRANCH=$RELEASE_BRANCH" >> $GITHUB_ENV
echo "RELEASE_DOWNLOAD_URL=$RELEASE_DOWNLOAD_URL" >> $GITHUB_ENV
echo "DEPENDENCY_PACKAGE=$DEPENDENCY_PACKAGE" >> $GITHUB_ENV
- name: Invoke external PR workflow
uses: fjogeleit/http-request-action@v1
with:
url: 'https://api.github.com/repos/reload/poc-dpl-cms-pr-trigger/dispatches'
method: 'POST'
customHeaders: '{"Accept": "application/vnd.github+json", "Authorization": "Bearer ${{ secrets.CMS_PR_CREATION_PAT }}" }'
data: |
{
"event_type": "create_pr",
"client_payload": {
"branch": "${{ env.RELEASE_BRANCH }}",
"build_url": "${{ env.RELEASE_DOWNLOAD_URL }}",
dependency_package: "${{ env.DEPENDENCY_PACKAGE }}"
}
}