-
Notifications
You must be signed in to change notification settings - Fork 20
689 lines (620 loc) · 26.2 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
name: Build
on:
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
verify:
runs-on: ubuntu-24.04
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Verify README generation
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: sdk
sdk_language: JavaScript
dev_docs_slug: nodejs
multiple_sdks: true
- name: Verify README generation for nodejs
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: sdk
sdk_language: Node.js
dev_docs_slug: nodejs
template_file: ./packages/client-sdk-nodejs/README.template.md
output_file: ./packages/client-sdk-nodejs/README.md
- name: Verify README generation for nodejs compression extension
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: alpha
project_type: other
template_file: ./packages/client-sdk-nodejs-compression/README.template.md
output_file: ./packages/client-sdk-nodejs-compression/README.md
- name: Verify README generation for nodejs compression zstd extension
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: alpha
project_type: other
template_file: ./packages/client-sdk-nodejs-compression-zstd/README.template.md
output_file: ./packages/client-sdk-nodejs-compression-zstd/README.md
- name: Verify README generation for web
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: sdk
sdk_language: "JavaScript Web"
dev_docs_slug: web
template_file: ./packages/client-sdk-web/README.template.md
output_file: ./packages/client-sdk-web/README.md
- name: Verify README generation for examples
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/README.template.md
output_file: ./examples/README.md
- name: Verify README generation for examples/deno
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/deno/README.template.md
output_file: ./examples/deno/README.md
- name: Verify README generation for examples/deno/web-sdk
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/deno/web-sdk/README.template.md
output_file: ./examples/deno/web-sdk/README.md
- name: Verify README generation for examples/deno/http-api
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/deno/http-api/README.template.md
output_file: ./examples/deno/http-api/README.md
- name: Verify README generation for examples/nodejs
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/README.template.md
output_file: ./examples/nodejs/README.md
- name: Verify README generation for examples/nodejs/cache
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/cache/README.template.md
output_file: ./examples/nodejs/cache/README.md
- name: Verify README generation for examples/nodejs/observability
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: beta
project_type: other
template_file: ./examples/nodejs/observability/README.template.md
output_file: ./examples/nodejs/observability/README.md
- name: Verify README generation for examples/nodejs/compression
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/compression/README.template.md
output_file: ./examples/nodejs/compression/README.md
- name: Verify README generation for examples/nodejs/compression-zstd
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/compression-zstd/README.template.md
output_file: ./examples/nodejs/compression-zstd/README.md
- name: Verify README generation for examples/nodejs/token-vending-machine
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: beta
project_type: other
template_file: ./examples/nodejs/token-vending-machine/README.template.md
output_file: ./examples/nodejs/token-vending-machine/README.md
- name: Verify README generation for examples/nodejs/rate-limiter
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: beta
project_type: other
template_file: ./examples/nodejs/rate-limiter/README.template.md
output_file: ./examples/nodejs/rate-limiter/README.md
- name: Verify README generation for examples/nodejs/access-control
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/access-control/README.template.md
output_file: ./examples/nodejs/access-control/README.md
- name: Verify README generation for examples/nodejs/aws
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/README.template.md
output_file: ./examples/nodejs/aws/README.md
- name: Verify README generation for examples/nodejs/aws/eventbridge
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/eventbridge/README.template.md
output_file: ./examples/nodejs/aws/eventbridge/README.md
- name: Verify README generation for examples/nodejs/aws/eventbridge/webapp
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/eventbridge/webapp/README.template.md
output_file: ./examples/nodejs/aws/eventbridge/webapp/README.md
- name: Verify README generation for examples/nodejs/aws/eventbridge/cliApp
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/eventbridge/cliApp/README.template.md
output_file: ./examples/nodejs/aws/eventbridge/cliApp/README.md
- name: Verify README generation for examples/nodejs/aws/secrets-manager
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/secrets-manager/README.template.md
output_file: ./examples/nodejs/aws/secrets-manager/README.md
- name: Verify README generation for examples/nodejs/aws/lambda-examples
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/lambda-examples/README.template.md
output_file: ./examples/nodejs/aws/lambda-examples/README.md
- name: Verify README generation for examples/nodejs/aws/lambda-examples/simple-get
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/aws/lambda-examples/simple-get/README.template.md
output_file: ./examples/nodejs/aws/lambda-examples/simple-get/README.md
- name: Verify README generation for examples/nodejs/aws/lambda-examples/cloudwatch-metrics
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: beta
project_type: other
template_file: ./examples/nodejs/aws/lambda-examples/cloudwatch-metrics/README.template.md
output_file: ./examples/nodejs/aws/lambda-examples/cloudwatch-metrics/README.md
- name: Verify README generation for examples/nodejs/aws/lambda-examples/advanced-compression
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: beta
project_type: other
template_file: ./examples/nodejs/aws/lambda-examples/advanced-compression/README.template.md
output_file: ./examples/nodejs/aws/lambda-examples/advanced-compression/README.md
- name: Verify README generation for examples/nodejs/topics
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/topics/README.template.md
output_file: ./examples/nodejs/topics/README.md
- name: Verify README generation for examples/nodejs/load-gen
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/load-gen/README.template.md
output_file: ./examples/nodejs/load-gen/README.md
- name: Verify README generation for examples/nodejs/storage-load-gen
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/nodejs/storage-load-gen/README.template.md
output_file: ./examples/nodejs/storage-load-gen/README.md
- name: Verify README generation for examples/fastly-compute
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/fastly-compute/README.template.md
output_file: ./examples/fastly-compute/README.md
- name: Verify README generation for examples/web
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/web/README.template.md
output_file: ./examples/web/README.md
- name: Verify README generation for examples/web/cache
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/web/cache/README.template.md
output_file: ./examples/web/cache/README.md
- name: Verify README generation for examples/web/nextjs-chat
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/web/nextjs-chat/README.template.md
output_file: ./examples/web/nextjs-chat/README.md
- name: Verify README generation for examples/web/vite-chat-app
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: official
project_stability: stable
project_type: other
template_file: ./examples/web/vite-chat-app/README.template.md
output_file: ./examples/web/vite-chat-app/README.md
- name: Verify README generation for examples/cloudflare-workers
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/cloudflare-workers/README.template.md
output_file: ./examples/cloudflare-workers/README.md
- name: Verify README generation for examples/cloudflare-workers/http-api
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/cloudflare-workers/http-api/README.template.md
output_file: ./examples/cloudflare-workers/http-api/README.md
- name: Verify README generation for examples/cloudflare-workers/web-sdk
uses: momentohq/standards-and-practices/github-actions/oss-readme-template@gh-actions-v2
with:
project_status: incubating
project_stability: alpha
project_type: other
template_file: ./examples/cloudflare-workers/web-sdk/README.template.md
output_file: ./examples/cloudflare-workers/web-sdk/README.md
- name: Commitlint and Other Shared Build Steps
uses: momentohq/standards-and-practices/github-actions/shared-build@gh-actions-v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
cache-tests:
strategy:
matrix:
node: [18]
name: Test Cache on Node ${{ matrix.node }}
runs-on: ubuntu-latest
env:
MOMENTO_API_KEY: ${{ secrets.ALPHA_TEST_AUTH_TOKEN }}
TEST_LEGACY_AUTH_TOKEN: ${{ secrets.ALPHA_LEGACY_TEST_AUTH_TOKEN }}
TEST_MGA_ACCOUNT_SESSION_TOKEN: ${{ secrets.MOMENTO_PREPROD_ACCOUNT_SESSION_TOKEN }}
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Build and test all packages
run: |
node -v
./scripts/build-and-test-all-packages-consistent-reads.sh
test-examples:
strategy:
matrix:
node: [16, 18, 20]
fail-fast: true
name: Test examples on node ${{ matrix.node }}
runs-on: ubuntu-24.04
env:
# TODO: remove token stored as secret in favor of using a
# momento-local instance that can be spun up for testing
MOMENTO_API_KEY: ${{ secrets.ALPHA_TEST_AUTH_TOKEN }}
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Deps and Build
id: validation
continue-on-error: true
run: |
pushd examples/nodejs/cache
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/topics
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/webhooks
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/storage
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/compression
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/compression-zstd
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/observability
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/load-gen
npm ci
npm run build
popd
pushd examples/nodejs/storage-load-gen
npm ci
npm run build
popd
pushd examples/nodejs/aws/lambda-examples/simple-get/infrastructure
npm ci
npm run build
popd
pushd examples/nodejs/aws/lambda-examples/cloudwatch-metrics/infrastructure
npm ci
npm run build
popd
pushd examples/nodejs/aws/lambda-examples/webhooks/infrastructure
npm ci
npm run build
popd
pushd examples/nodejs/aws/lambda-examples/advanced-compression
# This example shows how to build and package a lambda function for a different target architecture,
# and thus it requires this `--force` flag.
npm ci --force
npm run build
popd
pushd examples/nodejs/mongodb-examples/simple-read-aside
npm ci
npm run build
popd
pushd examples/nodejs/access-control
npm ci
npm run build
npm run validate-examples
popd
pushd examples/nodejs/aws/secrets-manager
npm ci
npm run build
popd
pushd examples/nodejs/rate-limiter
npm ci
npm run build
npm run validate-examples
popd
- name: Send CI failure mail
if: ${{ steps.validation.outcome == 'failure' }}
uses: momentohq/standards-and-practices/github-actions/error-email-action@gh-actions-v2
with:
username: ${{secrets.MOMENTO_ROBOT_GMAIL_USERNAME}}
password: ${{secrets.MOMENTO_ROBOT_GMAIL_PASSWORD}}
- name: Flag Job Failure
if: ${{ steps.validation.outcome == 'failure' }}
run: exit 1
test-web-examples:
strategy:
matrix:
node: [ 16, 18 ]
fail-fast: true
name: Test web examples on node ${{ matrix.node }}
runs-on: ubuntu-24.04
env:
# TODO: remove token stored as secret in favor of using a
# momento-local instance that can be spun up for testing
MOMENTO_API_KEY: ${{ secrets.ALPHA_TEST_AUTH_TOKEN }}
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
- name: Install Deps and Build
id: validation
continue-on-error: true
run: |
pushd examples/web/cache
npm ci
npm run build
npm run validate-examples
popd
pushd examples/web/nextjs-chat
npm ci
npm run build
popd
pushd examples/web/vite-chat-app
npm ci
npm run build
popd
- name: Send CI failure mail
if: ${{ steps.validation.outcome == 'failure' }}
uses: momentohq/standards-and-practices/github-actions/error-email-action@gh-actions-v2
with:
username: ${{secrets.MOMENTO_ROBOT_GMAIL_USERNAME}}
password: ${{secrets.MOMENTO_ROBOT_GMAIL_PASSWORD}}
- name: Flag Job Failure
if: ${{ steps.validation.outcome == 'failure' }}
run: exit 1
test-deno-examples:
strategy:
matrix:
node: [ 16, 18 ]
fail-fast: true
name: Test Deno examples on node ${{ matrix.node }}
runs-on: ubuntu-24.04
env:
# TODO: remove token stored as secret in favor of using a
# momento-local instance that can be spun up for testing
MOMENTO_API_KEY: ${{ secrets.ALPHA_TEST_AUTH_TOKEN }}
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x # Run with latest stable Deno.
- name: Check formatting and Build
id: validation
continue-on-error: true
run: |
pushd examples/deno/web-sdk
deno lint
deno fmt --check
deno compile index.ts
popd
pushd examples/deno/http-api
deno lint
deno fmt --check
deno compile index.ts
popd
- name: Send CI failure mail
if: ${{ steps.validation.outcome == 'failure' }}
uses: momentohq/standards-and-practices/github-actions/error-email-action@gh-actions-v2
with:
username: ${{secrets.MOMENTO_ROBOT_GMAIL_USERNAME}}
password: ${{secrets.MOMENTO_ROBOT_GMAIL_PASSWORD}}
- name: Flag Job Failure
if: ${{ steps.validation.outcome == 'failure' }}
run: exit 1
verify-packages:
strategy:
matrix:
node: [ 18 ]
fail-fast: true
name: Verify packages are installable on node ${{ matrix.node }}
runs-on: ubuntu-24.04
steps:
- name: Setup repo
uses: actions/checkout@v3
- name: Build all packages
run: |
pushd packages/core
npm install
npm run build
npm pack
popd
pushd packages/common-integration-tests
npm install
npm run build
npm pack
popd
pushd packages/client-sdk-nodejs
npm install
npm run build
npm pack
popd
pushd packages/client-sdk-web
npm install
npm run build
npm pack
popd
- name: Locally install in nodejs example and verify it builds
run: |
pushd examples/nodejs/cache
# This is a bit of a hack, but ensures that the package-lock does not get corrupted
# due to installing these locally packaged files. All we care about is that the examples
# use the locally packaged sdks, and that they can build correctly with no errors
rm -rf node_modules package-lock.json
npm i ../../../packages/core/gomomento-sdk-core-0.0.1.tgz
rm -rf node_modules package-lock.json
npm i ../../../packages/client-sdk-nodejs/gomomento-sdk-0.0.1.tgz
rm -rf node_modules package-lock.json
npm i
npm run build
popd
- name: Locally install in web example and verify it builds
run: |
pushd examples/web/cache
rm -rf node_modules package-lock.json
npm i ../../../packages/core/gomomento-sdk-core-0.0.1.tgz
rm -rf node_modules package-lock.json
npm i ../../../packages/client-sdk-web/gomomento-sdk-web-0.0.1.tgz
rm -rf node_modules package-lock.json
npm i
npm run build
popd
# https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#enable-auto-merge-on-a-pull-request
# dependabot-auto-merge:
# name: Dependabot Auto Merge
# permissions:
# contents: write
# pull-requests: write
# runs-on: ubuntu-latest
# # make sure we run all tests/examples and they pass before we try and auto approve/merge the dependabot prs
# needs: [test-deno-examples, test-web-examples, test-examples, test, verify]
# if: ${{ github.actor == 'dependabot[bot]' }}
# steps:
# - name: Dependabot metadata
# id: metadata
# uses: dependabot/fetch-metadata@v1
# with:
# github-token: "${{ secrets.GITHUB_TOKEN }}"
# - name: Approve a PR
# run: gh pr review --approve "$PR_URL"
# env:
# PR_URL: ${{github.event.pull_request.html_url}}
# # need to have an approver first before dependabot can merge the pr, here we are using the shared
# # momento github actions bot user
# GH_TOKEN: ${{secrets.MOMENTO_MACHINE_USER_GITHUB_TOKEN}}
# - name: Enable auto-merge for Dependabot PRs
# if: ${{steps.metadata.outputs.update-type != 'version-update:semver-major'}}
# run: gh pr merge --squash "$PR_URL"
# env:
# PR_URL: ${{github.event.pull_request.html_url}}
# GH_TOKEN: ${{secrets.GITHUB_TOKEN}}