adding ai vision to the IaC - booster for filled capab #9
Workflow file for this run
This file contains hidden or 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
name: Update Last Modified Date | |
on: | |
pull_request: | |
branches: | |
- main | |
permissions: | |
contents: write | |
pull-requests: write | |
jobs: | |
update-date: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: pip install python-dateutil | |
- name: Configure Git | |
run: | | |
git config --global user.email "github-actions[bot]@users.noreply.github.com" | |
git config --global user.name "github-actions[bot]" | |
- name: Update last modified date in Markdown files | |
run: python .github/workflows/update_date.py | |
- name: Commit changes | |
env: | |
TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git fetch origin ${{ github.event.pull_request.head.ref }} | |
git pull --rebase origin ${{ github.event.pull_request.head.ref }} || echo "No rebase needed" | |
git add -A | |
git commit -m "Update last modified date in Markdown files" || echo "No changes to commit" | |
git remote set-url origin https://x-access-token:${TOKEN}@github.com/${{ github.repository }} | |
git push origin HEAD:${{ github.event.pull_request.head.ref }} |