diff --git a/.github/workflows/pr-reply-no-disclosure.yml b/.github/workflows/pr-reply-no-disclosure.yml index c5f7b93198..4c259ced7f 100644 --- a/.github/workflows/pr-reply-no-disclosure.yml +++ b/.github/workflows/pr-reply-no-disclosure.yml @@ -18,6 +18,12 @@ jobs: steps: - run: | BODY=$(gh pr view $NUMBER --json body) + AUTHOR=$(gh pr view $NUMBER --json author) + + if [[ $BODY == *"app/dependabot"* ]]; then + echo "Is dependabot, stop" + exit 0 + fi # I used AI assistance for: # - [ ] Code generation (e.g., when writing an implementation or fixing a bug) diff --git a/resources/views/list/ale.twig b/resources/views/list/ale.twig index b8fd03e782..9b3f80c164 100644 --- a/resources/views/list/ale.twig +++ b/resources/views/list/ale.twig @@ -104,10 +104,10 @@ {{ logEntry.after }} {% endif %} {% if 'add_to_piggy' == logEntry.action %} - {{ trans('firefly.ale_action_log_add', {amount: formatAmountBySymbol(logEntry.after.amount, logEntry.after.currency_symbol, logEntry.after.decimal_places, true), name: logEntry.after.piggy})|raw }} + {{ trans('firefly.ale_action_log_add', {amount: formatAmountBySymbol(logEntry.after.amount, logEntry.after.currency_symbol, logEntry.after.decimal_places, true), name: logEntry.after.piggy|e})|raw }} {% endif %} {% if 'remove_from_piggy' == logEntry.action %} - {{ trans('firefly.ale_action_log_remove', {amount: formatAmountBySymbol(logEntry.after.amount, logEntry.after.currency_symbol, logEntry.after.decimal_places, true), name: logEntry.after.piggy})|raw }} + {{ trans('firefly.ale_action_log_remove', {amount: formatAmountBySymbol(logEntry.after.amount, logEntry.after.currency_symbol, logEntry.after.decimal_places, true), name: logEntry.after.piggy|e})|raw }} {% endif %}