mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 02:58:20 +08:00
23 lines
451 B
YAML
23 lines
451 B
YAML
name: auto_abaplint
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
auto_abaplint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: run transformation
|
|
run: |
|
|
npx abaplint .github/abaplint/abaplint_fix.jsonc --fix
|
|
|
|
- name: Open PR
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
title: abaplint auto fixes
|