Skip to content

Bump actions/checkout from 5 to 6 #12

Bump actions/checkout from 5 to 6

Bump actions/checkout from 5 to 6 #12

Workflow file for this run

# Copyright (C) 2025 Katsute <https://github.com/Katsute>
name: Dependabot[bot]
on: [workflow_call, pull_request_target]
jobs:
dependabot:
name: Dependabot[bot]
runs-on: ubuntu-latest
timeout-minutes: 10
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: Checkout Repository
uses: actions/checkout@v6
- name: Approve Pull Request
continue-on-error: true
run: gh pr review $PR --approve
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.number }}
- name: Lock Pull Request
continue-on-error: true
run: gh pr lock $PR
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR: ${{ github.event.pull_request.number }}