chore(deps): Bump python from 3.13.7-slim to 3.14.2-slim (#78) #29
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: Release Please | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| # First, sync manifest with actual tags to prevent drift | |
| sync-manifest: | |
| runs-on: ubuntu-latest | |
| # Skip if commit was from github-actions bot to prevent circular triggers | |
| if: github.actor != 'github-actions[bot]' | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Sync manifest with tags | |
| uses: ./.github/actions/sync-manifest | |
| release-please: | |
| runs-on: ubuntu-latest | |
| needs: sync-manifest | |
| # Run even if sync-manifest was skipped (bot commits) | |
| if: always() && (needs.sync-manifest.result == 'success' || needs.sync-manifest.result == 'skipped') | |
| steps: | |
| - uses: google-github-actions/release-please-action@v4 |