chore(deps-dev): bump @typescript-eslint/parser from 7.18.0 to 8.1.0 #11
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
name: Dependabot Auto-Merge | |
on: | |
pull_request_target: | |
types: [review_requested] | |
permissions: | |
contents: write | |
pull-requests: write | |
packages: read | |
jobs: | |
Dependabot: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [ 20.x, 'lts/*' ] | |
if: ${{ github.actor == 'dependabot[bot]' }} | |
steps: | |
- name: Dependabot metadata | |
id: metadata | |
uses: dependabot/[email protected] | |
with: | |
github-token: "${{ secrets.GH_TOKEN }}" | |
skip-commit-verification: true | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install Dependencies | |
run: npm install --ignore-scripts | |
- name: Approve PR, if not already approved | |
run: | | |
gh pr checkout "$PR_URL" | |
if [ "$(gh pr status --json reviewDecision -q .currentBranch.reviewDecision)" != "APPROVED" ]; then | |
gh pr review --approve "$PR_URL" | |
else | |
echo "PR Already Approved."; | |
fi | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Run unit tests | |
run: | | |
npm run test | |
- name: Aggregate Dependabot PRs | |
id: aggregate_prs | |
run: | | |
PR_URL=$(gh pr list --json state:open author:dependabot[bot] base:$PR_BASE_BRANCH -q '.[].url' | jq -r 'join(" ")') | |
echo "::set-output name=pr_url::$PR_URL" | |
env: | |
PR_BASE_BRANCH: develop | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} | |
- name: Merge aggregated PRs | |
if: steps.aggregate_prs.outputs.pr_url != '' | |
run: | | |
gh pr merge --auto --merge ${{ steps.aggregate_prs.outputs.pr_url }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }} |