Skip to content

Commit

Permalink
Break commands into separate runs
Browse files Browse the repository at this point in the history
  • Loading branch information
kodebanget authored Feb 4, 2024
1 parent 955bf1d commit a14fb07
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/get-upstream-changes-I10n-id.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: pull upstream changes for new untranslated strings (ID)
run-name: pull upstream changes for new untranslated strings (ID)
on: [push]
jobs:
pull-new-strings:
Expand All @@ -7,9 +8,9 @@ jobs:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- run: git remote add upstream https://github.com/kodebanget/bluesky-social-app.git
- run: git fetch upstream main
- run: |
git remote add upstream https://github.com/kodebanget/bluesky-social-app.git
git fetch upstream main
FILE_IS_UPDATED=$(git diff --compact-summary main upstream/main | grep 'id/messages.po')
echo $FILE_IS_UPDATED
if [ "$FILE_IS_UPDATED" != "" ]; then
Expand Down

0 comments on commit a14fb07

Please sign in to comment.