blob: 7f4b5c6c9edc37fcb54e8102484c1e8b4e5cf932 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
name: Dependabot super yolo
on:
pull_request:
types: [opened, synchronize]
permissions:
pull-requests: write
contents: write
jobs:
run-custom-command:
if: ${{ github.actor_id == '49699333' }} # Dependabot
runs-on: alrest-xe-site
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
submodules: true
- name: Enable Pull Request Automerge
run: gh pr merge --squash --auto ${{ github.event.number }}
env:
GH_TOKEN: ${{ github.token }}
|