feat: portal administration application #12
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: Check Changes in client/apps | |
on: | |
pull_request: | |
branches: | |
- "*" | |
push: | |
branches: | |
- "*" | |
jobs: | |
check-changes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up Git | |
run: git fetch origin | |
- name: Check for changes in /client/apps/portal-administration | |
id: check_changes | |
run: | | |
# Check for changes in the /client/apps/portal-administration folder | |
if git diff --name-only ${{ github.base_ref }}...${{ github.head_ref }} | grep -q "^client/apps/portal-administration"; then | |
echo "Changes detected in client/apps/portal-administration/" | |
echo "::set-output name=changes_detected::true" | |
else | |
echo "No changes detected in client/apps/portal-administration/" | |
echo "::set-output name=changes_detected::false" | |
fi | |
- name: Output result | |
run: | | |
echo "Changes in client/apps/portal-administration: ${{ steps.check_changes.outputs.changes_detected }}" |