Bump eslint from 8.56.0 to 8.57.0 #207
Workflow file for this run
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
# Automatically merge Dependabot PRs when version comparison is within the range | |
# that is configured in .github/auto-merge.yml | |
name: Auto-Merge Dependabot PRs | |
on: | |
# WARNING: This needs to be run in the PR base, DO NOT build untrusted code in this action | |
# details under https://github.blog/changelog/2021-02-19-github-actions-workflows-triggered-by-dependabot-prs-will-run-with-read-only-permissions/ | |
pull_request_target: | |
jobs: | |
auto-merge: | |
if: github.actor == 'dependabot[bot]' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Check if PR should be auto-merged | |
uses: ahmadnassri/action-dependabot-auto-merge@v2 | |
with: | |
github-token: ${{ secrets.AUTO_MERGE_TOKEN }} | |
command: squash and merge |