abap2UI5/.github/workflows/check_app.yaml
oblomov-dev 5cdac21767
Some checks failed
UI5_2X / UI5_2X (push) Waiting to run
auto_abaplint_fix / auto_abaplint_fix (push) Waiting to run
auto_downport / auto_downport (push) Waiting to run
auto_app2abap / auto_app2abap (push) Has been cancelled
auto_frontend / auto_frontend (push) Has been cancelled
update badges
2025-02-19 15:32:07 +00:00

20 lines
560 B
YAML

name: check_app
on:
pull_request:
jobs:
check_app:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- name: Check for changes in src/01/03
run: |
if git diff --name-only origin/main | grep '^src/01/03/'; then
echo "Error: Changes detected in src/01/03. This directory should not be modified. Files will be auto generated. Change files in folder app/ instead. "
exit 1
else
echo "No changes detected in src/01/03."
fi