-
Notifications
You must be signed in to change notification settings - Fork 567
63 lines (54 loc) · 2.36 KB
/
synchronize-readme.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Synchronize Readme
on:
workflow_dispatch:
schedule:
- cron: '0 12 * * 1-5' # Mon-Fri at 12
jobs:
build:
name: synchronize-readme
runs-on: ubuntu-latest
steps:
- run: |
# Setup
gh auth setup-git
git config --global user.email "[email protected]"
git config --global user.name "$GITHUB_ACTOR"
# Clone the CLI repository
gh repo clone snyk/cli cli -- --depth=1 --quiet
git -C ./cli checkout -B $DESTINATION_BRANCH
# Retrieve the GitBook content
wget https://raw.githubusercontent.com/snyk/user-docs/main/docs/snyk-cli/getting-started-with-the-snyk-cli.md -O current_gitbook.md
# Find relative paths to GitBooks assets (such as images) and replace with absolute paths
sed -i \
-e "s|../.gitbook/assets/|https://github.com/snyk/user-docs/raw/HEAD/docs/.gitbook/assets/|g" \
current_gitbook.md
# Replace the README.md content with the GitBook content
cp current_gitbook.md ./cli/README.md
# If changes, commit and create PR
if [[ $(git -C ./cli status --porcelain) ]]; then
echo "Documentation changes detected"
cd ./cli
npm clean-install
npx prettier --write ./cli/README.md
git push -f -u origin $DESTINATION_BRANCH
export SHA=$( git rev-parse $DESTINATION_BRANCH:README.md )
export CONTENT=$( base64 -i README.md )
gh api --method PUT /repos/:owner/:repo/contents/README.md \
--field message="$MESSAGE" \
--field content="$CONTENT" \
--field encoding="base64" \
--field branch="$DESTINATION_BRANCH" \
--field sha="$SHA"
if [[ ! $(gh pr list --search "$MESSAGE" 2>&1 | grep -e "$MESSAGE";) ]]; then
echo "Creating PR"
gh pr create --title="$MESSAGE" --body="Automatic PR controlled by GitHub Action." --head $DESTINATION_BRANCH
else
echo "PR exists, pushed changes to it."
fi
else
echo "No documentation changes detected, exiting."
fi
env:
DESTINATION_BRANCH: docs/automatic-gitbook-update
MESSAGE: 'docs: synchronizing README from GitBook'
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}