Skip to content

Commit

Permalink
fixup! Add AboutLibraries dependency to compute credits
Browse files Browse the repository at this point in the history
  • Loading branch information
opatry committed Oct 3, 2024
1 parent 7fd01c1 commit 05a91be
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,15 +50,15 @@ jobs:
stale_credits=$(git diff tasks-app-desktop/src/main/resources/licenses_desktop.json)
if [ -n "${stale_credits}" ]; then
./_ci/generate_github_comment_stale_credits.sh ":tasks-app-desktop" >> "${GITHUB_STEP_SUMMARY}"
echo "has_stale_credits=true"
echo "has_stale_credits=true" >> "${GITHUB_OUTPUT}"
else
echo "has_stale_credits=false"
echo "has_stale_credits=false" >> "${GITHUB_OUTPUT}"
fi
- name: 🛎️ Notify stale credits for ':tasks-app-desktop'
if: >-
github.event_name == 'pull_request' &&
steps.check-desktop-app-credits.outputs.has_stale_credits == true
steps.check-desktop-app-credits.outputs.has_stale_credits
uses: actions/github-script@v7
with:
script: |
Expand All @@ -80,15 +80,15 @@ jobs:
stale_credits=$(git diff tasks-app-android/src/main/assets/licenses_android.json)
if [ -n "${stale_credits}" ]; then
./_ci/generate_github_comment_stale_credits.sh ":tasks-app-android" >> "${GITHUB_STEP_SUMMARY}"
echo "has_stale_credits=true"
echo "has_stale_credits=true" >> "${GITHUB_OUTPUT}"
else
echo "has_stale_credits=false"
echo "has_stale_credits=false" >> "${GITHUB_OUTPUT}"
fi
- name: 🛎️ Notify stale credits for ':tasks-app-android'
if: >-
github.event_name == 'pull_request' &&
steps.check-android-app-credits.outputs.has_stale_credits == true
steps.check-android-app-credits.outputs.has_stale_credits
uses: actions/github-script@v7
with:
script: |
Expand Down

0 comments on commit 05a91be

Please sign in to comment.