Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions .github/workflows/service-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,13 @@ jobs:
- name: Get Changes
id: get_changes
run: |
git fetch origin ${{ github.event.pull_request.base.ref }}
changed=$(git diff --name-only origin/${{ github.event.pull_request.base.ref }}...HEAD | tr '\n' ' ')
if [ "${{ github.event_name }}" == "pull_request" ]; then
git fetch origin ${{ github.event.pull_request.base.ref }}
BASE="origin/${{ github.event.pull_request.base.ref }}"
else
BASE="HEAD~1"
fi
changed=$(git diff --name-only $BASE...HEAD | tr '\n' ' ')
echo "changed=$changed" >> $GITHUB_OUTPUT

ehr-repo:
Expand Down
2 changes: 1 addition & 1 deletion services/mesh-forwarder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ ENV POLL_FREQUENCY=60
ENV FORWARDER_HOME=/mesh-forwarder
ARG IMAGE_TAG=image_tag \
ENV=bucket
ENV BUILD_TAG=${IMAGE_TAG}
ENV BUILD_TAG=${IMAGE_TAG}c

RUN addgroup --system mesh && adduser --ingroup mesh --system mesh

Expand Down
Loading