Skip to content

chore(deps): update dependency eslint to v10 #120

chore(deps): update dependency eslint to v10

chore(deps): update dependency eslint to v10 #120

Workflow file for this run

name: PR Triage
on:
pull_request_target:
types:
- opened
- edited
- reopened
- synchronize
jobs:
title:
name: Title Validation
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Project
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6
with:
node-version: 24
cache: yarn
- name: Install Dependencies
run: yarn --immutable
- name: Run Validation
run: echo "$PR_TITLE" | yarn commitlint
env:
PR_TITLE: ${{ github.event.pull_request.title }}
dependabot:
name: Dependabot Auto-merge
runs-on: ubuntu-latest
if: github.event.pull_request.user.login == 'dependabot[bot]' && github.repository_owner == 'Kings-World'
permissions:
contents: write
pull-requests: write
steps:
- name: Dependabot metadata
id: metadata
uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
- name: Enable auto-merge for Dependabot PRs
if: steps.metadata.outputs.update-type == 'version-update:semver-patch' || steps.metadata.outputs.update-type == 'version-update:semver-minor'
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{ github.event.pull_request.html_url }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}