mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 17:17:38 +08:00

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
20 lines
560 B
YAML
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 |