Update dependency pytest to v9.0.2 #476
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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6 | |
| - 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 }} |