General
: Show navbar menu in every student view
#1106
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |