Chore: update dependency eslint-plugin-unicorn to v66 #3591
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: Dependabot Automerge | |
| on: | |
| pull_request: | |
| types: | |
| # - edited # PR's base branch was changed | |
| - opened | |
| - reopened | |
| - synchronize # PR's branch was edited (i.e. new commits) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number }} | |
| cancel-in-progress: true | |
| jobs: | |
| # Require a valid PR title before enabling auto-merging | |
| pr-renamer: | |
| if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
| permissions: | |
| contents: read # pr-renamer.yml | |
| pull-requests: write # pr-renamer.yml (gh pr edit) | |
| uses: ./.github/workflows/pr-renamer.yml | |
| dependabot-automerge: | |
| needs: | |
| - pr-renamer | |
| if: ${{ github.event.pull_request.user.login == 'dependabot[bot]' }} | |
| permissions: | |
| contents: write # gh pr merge | |
| repository-projects: read # gh pr merge | |
| pull-requests: write # gh pr merge | |
| runs-on: ubuntu-latest | |
| steps: | |
| - run: gh pr merge "${{ github.event.pull_request.number }}" --squash --auto | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| GH_REPO: ${{ github.repository }} |