Skip to content

Commit ce12371

Browse files
possebonclaude
andcommitted
fix(ci): fix YAML parsing error in workflow files and ESLint line length
Fix YAML mapping error in Summary step (env+run indentation issue) by inlining the digest output. Fix ESLint max-line-length on remoteJidAlt filter lines by breaking ternary across multiple lines. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent d2b9d65 commit ce12371

4 files changed

Lines changed: 9 additions & 11 deletions

File tree

.github/workflows/publish_docker_image.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,4 @@ jobs:
5757
cache-to: type=gha,mode=max
5858

5959
- name: Summary
60-
env:
61-
DIGEST: ${{ steps.docker_build.outputs.digest }}
62-
run: echo "Image digest: $DIGEST"
60+
run: echo "Image digest ${{ steps.docker_build.outputs.digest }}"

.github/workflows/publish_docker_image_homolog.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,4 @@ jobs:
5555
cache-to: type=gha,mode=max
5656

5757
- name: Summary
58-
env:
59-
DIGEST: ${{ steps.docker_build.outputs.digest }}
60-
run: echo "Image digest: $DIGEST"
58+
run: echo "Image digest ${{ steps.docker_build.outputs.digest }}"

.github/workflows/publish_docker_image_latest.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,4 @@ jobs:
5555
cache-to: type=gha,mode=max
5656

5757
- name: Summary
58-
env:
59-
DIGEST: ${{ steps.docker_build.outputs.digest }}
60-
run: echo "Image digest: $DIGEST"
58+
run: echo "Image digest ${{ steps.docker_build.outputs.digest }}"

src/api/integrations/channel/whatsapp/whatsapp.baileys.service.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5085,7 +5085,9 @@ export class BaileysStartupService extends ChannelStartupService {
50855085
{
50865086
OR: [
50875087
keyFilters?.remoteJid ? { key: { path: '$.remoteJid', equals: keyFilters?.remoteJid } as any } : {},
5088-
keyFilters?.remoteJidAlt ? { key: { path: '$.remoteJidAlt', equals: keyFilters?.remoteJidAlt } as any } : {},
5088+
keyFilters?.remoteJidAlt
5089+
? { key: { path: '$.remoteJidAlt', equals: keyFilters?.remoteJidAlt } as any }
5090+
: {},
50895091
],
50905092
},
50915093
],
@@ -5114,7 +5116,9 @@ export class BaileysStartupService extends ChannelStartupService {
51145116
{
51155117
OR: [
51165118
keyFilters?.remoteJid ? { key: { path: '$.remoteJid', equals: keyFilters?.remoteJid } as any } : {},
5117-
keyFilters?.remoteJidAlt ? { key: { path: '$.remoteJidAlt', equals: keyFilters?.remoteJidAlt } as any } : {},
5119+
keyFilters?.remoteJidAlt
5120+
? { key: { path: '$.remoteJidAlt', equals: keyFilters?.remoteJidAlt } as any }
5121+
: {},
51185122
],
51195123
},
51205124
],

0 commit comments

Comments
 (0)