-
Notifications
You must be signed in to change notification settings - Fork 62
39 lines (33 loc) · 1.05 KB
/
contracts-sync.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: 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)