Skip to content

Merge pull request #15 from amerintlxperts/dependabot/github_actions/… #52

Merge pull request #15 from amerintlxperts/dependabot/github_actions/…

Merge pull request #15 from amerintlxperts/dependabot/github_actions/… #52

Workflow file for this run

name: "Release dev container features & Generate Documentation"
on:
workflow_dispatch:
push:
jobs:
deploy:
if: ${{ github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
permissions:
contents: write
pull-requests: write
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: "Publish Features"
uses: devcontainers/action@1082abd5d2bf3a11abccba70eef98df068277772
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
publish-features: "true"
base-path-to-features: "./src"
generate-docs: "true"
- name: Create 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[bot]@users.noreply.github.com
git config --global user.name github-actions[bot]
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
- name: Repository Dispatch
uses: peter-evans/repository-dispatch@ff45666b9427631e3450c54a1bcbee4d9ff4d7c0
with:
token: ${{ secrets.PAT }}
repository: amerintlxperts/devcontainers
event-type: features
client-payload: '{"ref": "${{ github.ref }}", "sha": "${{ github.sha }}"}'