Update python:3.13-slim-bullseye Docker digest to 631af3f #411
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: Auto Merge Bot PRs | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Create app token | |
| id: create-app-token | |
| uses: ./.github/actions/github/app-token | |
| with: | |
| app_id: ${{ vars.LETTUCE_BOT_APP_ID }} | |
| installation_id: ${{ vars.LETTUCE_BOT_INSTALLATION_ID }} | |
| private_key: ${{ secrets.LETTUCE_BOT_PRIVATE_KEY }} | |
| - name: Auto Merge Lettuce Bot | |
| if: ${{ github.actor == 'lettuce-bot[bot]' || github.actor == 'renovate[bot]' }} | |
| run: | | |
| gh pr merge --repo ${{ github.repository }} --auto --merge ${{ github.event.number }} | |
| env: | |
| GH_TOKEN: ${{ steps.create-app-token.outputs.token }} |