Skip to content

#patch: bump actions/checkout from 4.2.1 to 4.2.2 #364

#patch: bump actions/checkout from 4.2.1 to 4.2.2

#patch: bump actions/checkout from 4.2.1 to 4.2.2 #364

Workflow file for this run

---
name: Auto Actions
on: # yamllint disable-line rule:truthy
pull_request_target:
types: [labeled, unlabeled, synchronize, review_requested, opened, reopened]
permissions:
pull-requests: write
contents: write
jobs:
auto-approve-github-actions:
runs-on: ubuntu-latest
if: >-
github.actor == 'dependabot[bot]'
||
github.actor == 'dependabot-preview[bot]'
steps:
- uses: hmarr/[email protected]
with:
github-token: ${{ secrets.DETERMINED_TOKEN }}
auto-merge-github-actions:
runs-on: ubuntu-latest
if: >-
github.actor == 'dependabot[bot]'
||
github.actor == 'dependabot-preview[bot]'
steps:
- name: Enable auto-merge
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{ secrets.DETERMINED_TOKEN }}