Skip to content

General: Show navbar menu in every student view #1107

General: Show navbar menu in every student view

General: Show navbar menu in every student view #1107

name: Analysis-of-Endpoint-Connections
on:
pull_request:
types:
- opened
- synchronize
paths:
- 'src/main/java/**'
- 'src/main/webapp/**'
jobs:
show-modified-files:
timeout-minutes: 10
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Get list of modified files
run: |
git diff --name-only origin/${{ github.event.pull_request.base.ref }} HEAD > modified_files.txt
- name: Display modified files
run: |
echo "Modified files in this pull request:"
cat modified_files.txt