Bump aws from 5.24.0 to 5.35.0 #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This confirms that the repo is properly documented according | |
# to the information located in README-HEADER.md | |
name: Document | |
on: | |
pull_request: | |
# Run tests when PRs opened or updated | |
types: [opened, synchronize] | |
branches: | |
- main | |
concurrency: document-${{ github.base_ref }} | |
jobs: | |
document: | |
name: "Document" | |
runs-on: ubuntu-latest | |
if: ${{ github.triggering_actor != 'dependabot[bot]' }} | |
defaults: | |
run: | |
shell: bash | |
steps: | |
- name: "Checkout" | |
uses: actions/checkout@main | |
# This makes it easier to push changes back to the PR | |
- name: "Checkout w/ gh" | |
run: gh pr checkout ${{ github.event.pull_request.number}} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Setup rtx | |
uses: jdx/rtx-action@v1 | |
- name: "Generate documentation" | |
run: ./scripts/document.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Commit if Necessary" | |
run: | | |
if [[ "$(basename "$(git rev-parse --show-toplevel)")" != *'terraform-aws-template'* ]]; then | |
echo "Setting core.fileMode to false to avoid false positives in documentation check." | |
git config core.fileMode false | |
if [[ -n $(git status --porcelain) ]]; then | |
echo "Documentation is not up to date. Comitting updates" | |
git add README.md | |
git config user.name "${GITHUB_USERNAME}" | |
git config user.email "${GITHUB_USERNAME}@users.noreply.github.com" | |
git commit -m "Running document script" | |
git push | |
fi | |
fi | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GITHUB_USERNAME: ${{ github.actor }} |