forked from nelmio/NelmioApiDocBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
33 lines (29 loc) · 864 Bytes
/
dependabot.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Dependabot update UI files
on: pull_request
jobs:
dependabot:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./utils
permissions:
contents: write
if: github.event.pull_request.user.login == 'dependabot[bot]'
steps:
- name: "Checkout"
uses: actions/checkout@v4
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
- uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: yarn install
- name: Swagger UI
run: yarn run swagger
- name: Redocly
run: yarn run redoc
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[dependabot-skip] Update UI files"
branch: ${{ github.head_ref }}