forked from ballerina-platform/module-ballerina-websub
-
Notifications
You must be signed in to change notification settings - Fork 0
48 lines (41 loc) · 1.39 KB
/
update_specs.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
40
41
42
43
44
45
46
47
48
name: Update Specifications
env:
SPEC_FOLDER_PATH: 'docs/spec'
on:
workflow_dispatch:
push:
branches:
- master
paths:
- 'docs/spec/**'
jobs:
update_specs:
name: Update Specifications
if: github.repository_owner == 'ballerina-platform'
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Get current date
id: date
run: echo "::set-output name=date::$(date +'%Y-%m-%d')"
- name: Get Repo Name
id: repo_name
run: |
MODULE=${{ github.event.repository.name }}
echo "::set-output name=short_name::${MODULE##*-}"
- name: Trigger Workflow
run: |
curl --request POST \
'https://api.github.com/repos/ballerina-platform/ballerina-dev-website/dispatches' \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Authorization: Bearer ${{ secrets.BALLERINA_BOT_TOKEN }}' \
--data "{
\"event_type\": \"update-stdlib-specs\",
\"client_payload\": {
\"module_name\": \"${{ github.event.repository.name }}\",
\"short_name\": \"${{ steps.repo_name.outputs.short_name }}\",
\"file_dir\": \"${{ github.event.repository.name }}/${{ env.SPEC_FOLDER_PATH }}\",
\"release_date\": \"${{ steps.date.outputs.date }}\"
}
}"