Skip to content

build(deps): bump python in the docker-images group #3

build(deps): bump python in the docker-images group

build(deps): bump python in the docker-images group #3

name: Bootstrap Template
on:
push:
permissions:
contents: write
jobs:
bootstrap:
if: github.actor != 'github-actions[bot]'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.13'
- name: Bootstrap repository metadata
run: python scripts/bootstrap_template.py --from-github
env:
GITHUB_REPOSITORY: ${{ github.repository }}
GITHUB_REPOSITORY_OWNER: ${{ github.repository_owner }}
GITHUB_ACTOR: ${{ github.actor }}
GITHUB_ACTOR_ID: ${{ github.actor_id }}
- name: Commit bootstrap changes
run: |
if git diff --quiet; then
exit 0
fi
git config user.name "github-actions[bot]"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git add .
git commit -m "chore(template): bootstrap repository metadata"
git push