Skip to content

Commit

Permalink
ci: update UI files from dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
DjordyKoert committed Nov 7, 2024
1 parent ea6991e commit faa15bc
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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@v4
with:
commit_message: "[dependabot-skip] Update UI files"
branch: ${{ github.head_ref }}

0 comments on commit faa15bc

Please sign in to comment.