Smart Contracts Docs Sync #110
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Smart Contracts Docs Sync | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
sync-sc-docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Pull Smart Contracts docs | |
run: npm run docs:contracts:sync | |
- name: Check if there are changes | |
id: contracts_docs_changes | |
run: | | |
if [[ -z "$(git status --porcelain $STATUS_ARGS $PATHSPEC)" ]]; | |
then | |
echo '::set-output name=changed::0' | |
else | |
echo '::set-output name=changed::1' | |
fi | |
- name: Create Pull Request | |
if: steps.contracts_docs_changes.outputs.changed == 1 | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
draft: false | |
branch: contracts-docs-sync | |
delete-branch: true | |
title: '[Auto-Sync] Update Smart Contracts Technical Docs' | |
body: Update changes from `@lukso/lsp-smart-contracts` repository (contract ABIs docs & interface IDs) |