Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add workflow to sync Snyk CLI GitBook doc to the CLI repo README #4996

Merged
merged 3 commits into from
Feb 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
63 changes: 63 additions & 0 deletions .github/workflows/synchronize-readme.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 "noreply@snyk.io"
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 }}
Loading
Loading