Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/develop' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
msinn committed Jan 12, 2025
2 parents 1522826 + 2974078 commit 4e1cf27
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 7 deletions.
23 changes: 17 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,14 +44,25 @@ jobs:
repository: smarthomeNG/smarthome
ref: ${{steps.extract_branch.outputs.branch}}
path: smarthomeng

- name: Checkout repository PLUGINS ${{steps.extract_branch.outputs.branch}} Branch

- name: Check if branch '${{ steps.extract_branch.outputs.branch }}' exists in smarthomeNG/plugins
run: echo "code=$(git ls-remote --exit-code --heads https://github.com/smarthomeNG/plugins ${{ steps.extract_branch.outputs.branch }} > /dev/null; echo $? )" >>$GITHUB_OUTPUT
id: plugins_branch_check

- name: Checkout plugins from branch '${{ steps.extract_branch.outputs.branch }}' (for push on known smarthomeNG/smarthome branch)
if: github.event_name != 'pull_request' && steps.plugins_branch_check.outputs.code == '0'
uses: actions/checkout@v3
with:
repository: smarthomeNG/smarthome
ref: ${{steps.extract_branch.outputs.branch}}
path: plugins

repository: smarthomeNG/plugins
ref: ${{ steps.extract_branch.outputs.branch }}

- name: Checkout plugins from branch 'develop' (for pull request or push on unknown smarthomeNG/smarthome branch)
if: github.event_name == 'pull_request' || steps.plugins_branch_check.outputs.code == '2'
uses: actions/checkout@v3
with:
repository: smarthomeNG/plugins
ref: develop

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion modules/admin/webif/static/assets/i18n/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@
"UPDATE INFORMATION": "Änderungsinformationen",
"LAST VALUE": "letzter Wert",
"LAST UPDATE": "Letztes Update",
"LAST CHANGE": "Letze Änderung",
"LAST CHANGE": "Letzte Änderung",
"UPDATE AGE": "Zeit seit dem letzten Update",
"CHANGE AGE": "Zeit seit der letzten Änderung",
"UPDATE BY": "Update durch",
Expand Down

0 comments on commit 4e1cf27

Please sign in to comment.