forked from immich-app/immich
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feat/15712-add-keyboard-shortcut-selection-o…
…n-grid * main: (32 commits) docs: clean up environment variables formatting & grammar (immich-app#16555) fix: reset/regenerate memories (immich-app#16548) fix(deps): update machine-learning (immich-app#16560) chore(deps): update node (immich-app#16538) refactor: migration tag repository to kysely (immich-app#16398) feat: qr code for new shared link (immich-app#16543) chore(deps): update github-actions (immich-app#16539) fix(docs): info on preloading ML models (immich-app#16452) docs: better facial recognition cluster guide (immich-app#14911) fix(web): delete action closes asset viewer in asset view (immich-app#15469) feat(cli): watch paths for auto uploading daemon (immich-app#14923) ci: weblate checks should always run, should skip on en.json (immich-app#16544) feat(web): Video memories on web (immich-app#16500) fix(deps): update typescript-projects (immich-app#16540) chore(mobile): fix store.put type def (immich-app#16517) refactor(mobile): move timeline methods to timeline repo (immich-app#16526) chore(deps): update dependency eslint-plugin-svelte to v3 (immich-app#16532) refactor(server): link live photos as part of metadata extraction instead of queueing job (immich-app#16390) chore(deps): update dependency globals to v16 (immich-app#16534) ci: don't check weblate lock on chore/translations and add success job (immich-app#16533) ...
- Loading branch information
Showing
162 changed files
with
4,681 additions
and
2,850 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: Weblate checks | ||
|
||
on: | ||
pull_request: | ||
branches: [main] | ||
|
||
jobs: | ||
pre-job: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
should_run: ${{ steps.found_paths.outputs.i18n == 'true' && github.head_ref != 'chore/translations'}} | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
- id: found_paths | ||
uses: dorny/paths-filter@v3 | ||
with: | ||
filters: | | ||
i18n: | ||
- 'i18n/!(en)**\.json' | ||
enforce-lock: | ||
name: Check Weblate Lock | ||
runs-on: ubuntu-latest | ||
if: ${{ needs.pre-job.outputs.should_run == 'true' }} | ||
steps: | ||
- name: Check weblate lock | ||
run: | | ||
if [[ "false" = $(curl https://hosted.weblate.org/api/components/immich/immich/lock/ | jq .locked) ]]; then | ||
exit 1 | ||
fi | ||
- name: Find Pull Request | ||
uses: juliangruber/find-pull-request-action@v1 | ||
id: find-pr | ||
with: | ||
branch: chore/translations | ||
- name: Fail if existing weblate PR | ||
if: ${{ steps.find-pr.outputs.number }} | ||
run: exit 1 | ||
success-check-lock: | ||
name: Weblate Lock Check Success | ||
needs: [ enforce-lock ] | ||
runs-on: ubuntu-latest | ||
if: always() | ||
steps: | ||
- name: Any jobs failed? | ||
if: ${{ contains(needs.*.result, 'failure') }} | ||
run: exit 1 | ||
- name: All jobs passed or skipped | ||
if: ${{ !(contains(needs.*.result, 'failure')) }} | ||
run: echo "All jobs passed or skipped" && echo "${{ toJSON(needs.*.result) }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.