generated from okp4/template-rust
-
Notifications
You must be signed in to change notification settings - Fork 21
45 lines (42 loc) · 1.38 KB
/
notify-draft.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
name: Notify externals repositories
on:
push:
branches: [ main ]
jobs:
update-docs:
runs-on: ubuntu-22.04
steps:
- name: Update draft docs repository
uses: fjogeleit/http-request-action@v1
with:
url: 'https://api.github.com/repos/axone-protocol/docs/actions/workflows/39152549/dispatches'
method: 'POST'
customHeaders: '{"Accept": "application/vnd.github+json", "Authorization": "Bearer ${{ secrets.OPS_TOKEN }}"}'
data: |-
{
"ref": "main",
"inputs": {
"version": "main",
"repository": "${{github.repository}}",
"section": "contracts",
"docs_directory": "docs/*",
"draft": "true"
}
}
update-schema:
runs-on: ubuntu-22.04
steps:
- name: Update draft docs repository
uses: fjogeleit/http-request-action@v1
with:
url: 'https://api.github.com/repos/axone-protocol/axone-contract-schema/actions/workflows/68383422/dispatches'
method: 'POST'
customHeaders: '{"Accept": "application/vnd.github+json", "Authorization": "Bearer ${{ secrets.OPS_TOKEN }}"}'
data: |-
{
"ref": "main",
"inputs": {
"ref": "main",
"draft": "true"
}
}