mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 22:48:53 +08:00
25 lines
481 B
YAML
25 lines
481 B
YAML
name: auto_abaplint_fix
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
auto_abaplint_fix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: run transformation
|
|
run: |
|
|
npm ci
|
|
npm run auto_abaplint
|
|
|
|
- name: Open PR
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
title: abaplint-auto-fixes
|
|
branch: abaplint-auto-fixes
|