mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-29 16:06:16 +08:00
36 lines
1.0 KiB
YAML
36 lines
1.0 KiB
YAML
name: build_ui5_stringified
|
|
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write # Berechtigung für Pull-Requests hinzufügen
|
|
|
|
jobs:
|
|
build_ui5_stringified:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 10
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20
|
|
cache: 'npm' # Caching von Node.js-Abhängigkeiten
|
|
- run: npm install @abaplint/cli -g
|
|
- run: |
|
|
node ci/app2string/trans2abap.js
|
|
abaplint --fix ci/app2string/abaplint.jsonc
|
|
git status
|
|
- name: Commit changes
|
|
run: |
|
|
git config --global user.name 'github-actions[bot]'
|
|
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
|
|
git add .
|
|
git commit -m 'Automatic update by GitHub Actions' || echo "No changes to commit"
|
|
- name: Open PR
|
|
uses: peter-evans/create-pull-request@v4
|
|
with:
|
|
title: Automatic Update
|
|
branch: update-branch # Optional: Branchname für den PR |