-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdependadoc.sh
executable file
·67 lines (50 loc) · 1.71 KB
/
dependadoc.sh
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
64
65
66
67
#!/bin/bash
set -eo pipefail
# working directory is $GITHUB_WORKSPACE
# docs folder at $GITHUB_WORKSPACE/docs
# working repo at $GITHUB_WORKSPACE/main
# env:
# MIRRORED_FOLDER: ${{ inputs.mirrored-folder }}
# MIRRORED_REPOSITORY_FULL_NAME: ${{ github.repository }}
# DOCS_REPOSITORY_PATH: ${{ inputs.docs-repository-path}}
# GITHUB_ACTOR: ${{ github.repository }}
# GITHUB_WORKSPACE: ${{ github.workspace }}
# GITHUB_TOKEN: ${{ inputs.docs-repository-token-variable }}
# get mirrored repo name (no owner)
MIRRORED_REPO=$(echo ${MIRRORED_REPOSITORY_FULL_NAME##*/})
# set branch name
BRANCH_NAME=dependadoc-${MIRRORED_REPO}-$(date +%F-T%H-%M)
# create a new branch inside docs repo
git switch -c $BRANCH_NAME
# configure some settings
git config user.name $GITHUB_ACTOR
git config user.email [email protected]
# copy files
echo "cp -a $GITHUB_WORKSPACE/main/$MIRRORED_FOLDER/. $DOCS_REPOSITORY_PATH/mirror-${MIRRORED_REPO}/"
cp -a $GITHUB_WORKSPACE/main/$MIRRORED_FOLDER/. $DOCS_REPOSITORY_PATH/mirror-${MIRRORED_REPO}/
# add changes
git add .
# generate file list
FILE_LIST=$(git status --porcelain)
# exit if file list indicates there are no changes
if [ -z "$FILE_LIST" ]; then
echo "No changes found to mirrored documentation, exiting."
exit
fi
# commit the changes
git commit -m "Update ${MIRRORED_REPO}'s mirrored files"
# push the changes
git push --set-upstream origin $BRANCH_NAME
# open a PR
set +e # to allow EOF not to exit 1
read -r -d '' BODY <<EOF
The following files were modified:
$FILE_LIST
EOF
# authenticate
gh auth login --with-token $GITHUB_TOKEN
# create PR
gh pr create \
--title "Dependadoc PR from $MIRRORED_REPO (source ./$MIRRORED_FOLDER)" \
--body "$BODY" \
--fill