Skip to content

Commit e50e401

Browse files
committed
feat(docs): trigger the docs workflow to update documentation
1 parent e387ba5 commit e50e401

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/notify-release.yml

+20
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,23 @@ jobs:
2020
"username": "Bot Anik",
2121
"content": "🚨 A new version of @${{ github.repository }} ${{ github.event.release.tag_name }} has been released! 🎉\n\n👉 Changelog: https://github.com/${{ github.repository }}/releases/tag/${{ github.event.release.tag_name }}\n👉 Official repo: https://github.com/${{ github.repository }}"
2222
}
23+
24+
update-docs:
25+
runs-on: ubuntu-22.04
26+
steps:
27+
- name: Update docs repository
28+
uses: fjogeleit/http-request-action@v1
29+
with:
30+
url: 'https://api.github.com/repos/okp4/docs/actions/workflows/update-versioned-docs/dispatches'
31+
method: 'POST'
32+
customHeaders: '{"Accept": "application/vnd.github+json", "Authorization": "Bearer ${{ secrets.OKP4_TOKEN }}"}'
33+
data: |-
34+
{
35+
"ref": "main",
36+
"inputs": {
37+
"version": "${{ github.event.release.tag_name }}",
38+
"repository": "${{github.repository}}",
39+
"section": "contracts",
40+
"docs_directory": "docs/*"
41+
}
42+
}

0 commit comments

Comments
 (0)