Bump express from 4.21.0 to 4.21.2 #25
This file contains 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: Dependabot Auto-Merge | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
approve-and-auto-merge: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
contents: write | |
if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
steps: | |
# Simulate this action being in the queue to start and running after CI | |
- name: Sleep for 180 seconds | |
run: sleep 180s | |
shell: bash | |
- uses: fastify/github-action-merge-dependabot@v3 | |
with: | |
merge-method: merge | |
use-github-auto-merge: true | |
target-development: 'major' | |
target-production: 'major' | |