Skip to content
This repository has been archived by the owner on Jul 16, 2024. It is now read-only.

build(deps-dev): bump @typescript-eslint/parser from 7.14.1 to 7.15.0 in /frontend #912

build(deps-dev): bump @typescript-eslint/parser from 7.14.1 to 7.15.0 in /frontend

build(deps-dev): bump @typescript-eslint/parser from 7.14.1 to 7.15.0 in /frontend #912

Workflow file for this run

name: Main
on:
pull_request:
branches: ["main"]
jobs:
linter-back:
uses: ./.github/workflows/jobs_lint-back.yaml
# test-back:
# uses: ./.github/workflows/jobs_test-back.yaml
linter-front:
uses: ./.github/workflows/jobs_lint-front.yaml
# test-front:
# uses: ./.github/workflows/jobs_test-front.yaml
dependabot-merge-pr:
needs: [linter-front, linter-back]
# needs: [linter-front, test-front, linter-back, test-back]
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
if: ${{ github.actor == 'dependabot[bot]' }}
steps:
- name: Dependabot metadata
id: dependabot-metadata
uses: dependabot/fetch-metadata@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Approve a PR
run: gh pr review --approve "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: ${{ steps.dependabot-metadata.outputs.update-type != 'version-update:semver-major' }}
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}