Skip to content

Merge pull request #15 from amerintlxperts/automated-documentation-up… #8

Merge pull request #15 from amerintlxperts/automated-documentation-up…

Merge pull request #15 from amerintlxperts/automated-documentation-up… #8

---
name: "Update devcontainer template documentation"
on:
push:
paths:
- 'src/**/*.md'
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
generate:
runs-on: ubuntu-latest
environment: documentation
permissions:
contents: write
pull-requests: write
if: "github.ref == 'refs/heads/main'"
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Generate Documentation
uses: devcontainers/action@528049dce833673f136ddfc09c2720d450029a6b
with:
generate-docs: "true"
base-path-to-templates: "./src"
- name: Create a PR for Documentation
id: push_image_info
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
set -e
echo "Start."
# Configure git and Push updates
git config --global user.email github-actions@github.com
git config --global user.name github-actions
git config pull.rebase false
branch=automated-documentation-update-$GITHUB_RUN_ID
git checkout -b $branch
message='Automated documentation update'
# Add / update and commit
git add */**/README.md
git commit -m 'Automated documentation update [skip ci]' || export NO_UPDATES=true
# Push
if [ "$NO_UPDATES" != "true" ] ; then
git push origin "$branch"
gh pr create --title "$message" --body "$message"
fi