-
Notifications
You must be signed in to change notification settings - Fork 66
39 lines (33 loc) · 977 Bytes
/
tools-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: tools-sync
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
sync-tools-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Pull tools docs
run: npm run docs:tools:sync
- name: Check if there are changes
id: 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.changes.outputs.changed == 1
uses: peter-evans/create-pull-request@v3
with:
draft: false
branch: tools-docs-sync
delete-branch: true
title: Update Tools Documentation
body: Update changes from erc725.js, tools-lsp-factory and tools-eip191-signer repositories