Unverified Commit 73db1be5 authored by Samruddhi Khandale's avatar Samruddhi Khandale Committed by GitHub

Bug fix: Fix update-documentation action (#72)

fix update-documentation action
parent 535799a8
...@@ -20,31 +20,27 @@ jobs: ...@@ -20,31 +20,27 @@ jobs:
- name: Add and Commit Documentation - name: Add and Commit Documentation
id: push_image_info id: push_image_info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: | run: |
set -e set -e
echo "Start." echo "Start."
GIT_BRANCH=$(echo "${{ github.ref }}" | grep -oP 'refs/(heads|tags)/\K(.+)') # Configure git and Push updates
if [ "$GIT_BRANCH" == "" ]; then git config --global user.email github-actions@github.com
echo "ERR: Could not determine branch." git config --global user.name github-actions
exit 1
fi
echo "GIT_BRANCH = ${GIT_BRANCH}"
git config --global user.email "vscr-feedback@microsoft.com"
git config --global user.name "Devcontainers CI"
git config pull.rebase false git config pull.rebase false
# # Pull in anything that may have come in branch=automated-documentation-update-$GITHUB_RUN_ID
# git pull "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:$GIT_BRANCH" git checkout -b $branch
message='Automated documentation update'
# Add / update and commit # Add / update and commit
git add */**/README.md git add */**/README.md
git status
git commit -m 'Automated documentation update' || export NO_UPDATES=true git commit -m 'Automated documentation update' || export NO_UPDATES=true
# Push # Push
if [ "$NO_UPDATES" != "true" ] ; then if [ "$NO_UPDATES" != "true" ] ; then
git push "https://ci:${{ secrets.GITHUB_TOKEN }}@github.com/${{ github.repository }}" "HEAD:$GIT_BRANCH" git push origin "$branch"
fi gh pr create --title "$message" --body "$message"
\ No newline at end of file fi
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment