build(deps): bump requests from 2.32.3 to 2.32.4 #5
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
| # .github/workflows/dependabot-auto-merge.yml | |
| name: "Dependabot auto-merge" | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| on: | |
| pull_request_target: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| jobs: | |
| dependabot: | |
| if: ${{ github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]' }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| # For Python projects using uv (optional, only needed if you want to test changes) | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: '3.x' | |
| - name: Install uv | |
| run: pip install uv | |
| # Install dependencies | |
| - name: Install dependencies with uv | |
| run: uv sync | |
| # (Optional) Run your tests here if you want to validate PRs before auto-merging | |
| # - name: Run tests | |
| # run: pytest | |
| - name: Enable auto-merge for Dependabot PRs | |
| uses: peter-evans/enable-pull-request-automerge@v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| merge-method: squash |