Skip to content

Commit 4cb3195

Browse files
committed
chore: e2e.sh recompile against gh-aw ref main
1 parent 6c396c3 commit 4cb3195

91 files changed

Lines changed: 928 additions & 608 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/agentics-maintenance.yml

Lines changed: 37 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393
pull-requests: write
9494
steps:
9595
- name: Setup Scripts
96-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
96+
uses: github/gh-aw/actions/setup@main
9797
with:
9898
destination: ${{ runner.temp }}/gh-aw/actions
9999

@@ -131,7 +131,7 @@ jobs:
131131
actions: write
132132
steps:
133133
- name: Setup Scripts
134-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
134+
uses: github/gh-aw/actions/setup@main
135135
with:
136136
destination: ${{ runner.temp }}/gh-aw/actions
137137

@@ -160,7 +160,7 @@ jobs:
160160
persist-credentials: false
161161

162162
- name: Setup Scripts
163-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
163+
uses: github/gh-aw/actions/setup@main
164164
with:
165165
destination: ${{ runner.temp }}/gh-aw/actions
166166

@@ -175,9 +175,9 @@ jobs:
175175
await main();
176176
177177
- name: Install gh-aw
178-
uses: github/gh-aw/actions/setup-cli@feat/use-samples-hidden-flag
178+
uses: github/gh-aw/actions/setup-cli@main
179179
with:
180-
version: feat/use-samples-hidden-flag
180+
version: main
181181

182182
- name: Run operation
183183
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
@@ -205,7 +205,7 @@ jobs:
205205
pull-requests: write
206206
steps:
207207
- name: Setup Scripts
208-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
208+
uses: github/gh-aw/actions/setup@main
209209
with:
210210
destination: ${{ runner.temp }}/gh-aw/actions
211211

@@ -251,7 +251,7 @@ jobs:
251251
persist-credentials: false
252252

253253
- name: Setup Scripts
254-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
254+
uses: github/gh-aw/actions/setup@main
255255
with:
256256
destination: ${{ runner.temp }}/gh-aw/actions
257257

@@ -295,7 +295,7 @@ jobs:
295295
persist-credentials: false
296296

297297
- name: Setup Scripts
298-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
298+
uses: github/gh-aw/actions/setup@main
299299
with:
300300
destination: ${{ runner.temp }}/gh-aw/actions
301301

@@ -310,9 +310,9 @@ jobs:
310310
await main();
311311
312312
- name: Install gh-aw
313-
uses: github/gh-aw/actions/setup-cli@feat/use-samples-hidden-flag
313+
uses: github/gh-aw/actions/setup-cli@main
314314
with:
315-
version: feat/use-samples-hidden-flag
315+
version: main
316316

317317
- name: Create missing labels
318318
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
@@ -341,7 +341,7 @@ jobs:
341341
persist-credentials: false
342342

343343
- name: Setup Scripts
344-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
344+
uses: github/gh-aw/actions/setup@main
345345
with:
346346
destination: ${{ runner.temp }}/gh-aw/actions
347347

@@ -356,9 +356,9 @@ jobs:
356356
await main();
357357
358358
- name: Install gh-aw
359-
uses: github/gh-aw/actions/setup-cli@feat/use-samples-hidden-flag
359+
uses: github/gh-aw/actions/setup-cli@main
360360
with:
361-
version: feat/use-samples-hidden-flag
361+
version: main
362362

363363
- name: Restore activity report logs cache
364364
id: activity_report_logs_cache
@@ -446,7 +446,7 @@ jobs:
446446
persist-credentials: false
447447

448448
- name: Setup Scripts
449-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
449+
uses: github/gh-aw/actions/setup@main
450450
with:
451451
destination: ${{ runner.temp }}/gh-aw/actions
452452

@@ -461,9 +461,19 @@ jobs:
461461
await main();
462462
463463
- name: Install gh-aw
464-
uses: github/gh-aw/actions/setup-cli@feat/use-samples-hidden-flag
464+
uses: github/gh-aw/actions/setup-cli@main
465465
with:
466-
version: feat/use-samples-hidden-flag
466+
version: main
467+
468+
- name: Restore forecast report logs cache
469+
id: forecast_report_logs_cache
470+
uses: actions/cache/restore@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
471+
with:
472+
path: ./.github/aw/logs
473+
key: ${{ runner.os }}-forecast-report-logs-${{ github.repository }}-${{ github.ref_name }}-${{ github.run_id }}
474+
restore-keys: |
475+
${{ runner.os }}-forecast-report-logs-${{ github.repository }}-
476+
${{ runner.os }}-forecast-report-logs-
467477
468478
- name: Generate forecast report
469479
id: generate_forecast_report
@@ -488,6 +498,13 @@ jobs:
488498
exit 1
489499
fi
490500
501+
- name: Save forecast report logs cache
502+
if: ${{ always() }}
503+
uses: actions/cache/save@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5
504+
with:
505+
path: ./.github/aw/logs
506+
key: ${{ runner.os }}-forecast-report-logs-${{ github.repository }}-${{ github.ref_name }}-${{ github.run_id }}
507+
491508
- name: Generate forecast issue
492509
if: ${{ always() }}
493510
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0
@@ -508,7 +525,7 @@ jobs:
508525
issues: write
509526
steps:
510527
- name: Setup Scripts
511-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
528+
uses: github/gh-aw/actions/setup@main
512529
with:
513530
destination: ${{ runner.temp }}/gh-aw/actions
514531

@@ -545,7 +562,7 @@ jobs:
545562
persist-credentials: false
546563

547564
- name: Setup Scripts
548-
uses: github/gh-aw/actions/setup@feat/use-samples-hidden-flag
565+
uses: github/gh-aw/actions/setup@main
549566
with:
550567
destination: ${{ runner.temp }}/gh-aw/actions
551568

@@ -560,9 +577,9 @@ jobs:
560577
await main();
561578
562579
- name: Install gh-aw
563-
uses: github/gh-aw/actions/setup-cli@feat/use-samples-hidden-flag
580+
uses: github/gh-aw/actions/setup-cli@main
564581
with:
565-
version: feat/use-samples-hidden-flag
582+
version: main
566583

567584
- name: Validate workflows and file issue on findings
568585
uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0

.github/workflows/test-claude-add-comment.lock.yml

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.github/workflows/test-claude-add-discussion-comment.lock.yml

Lines changed: 10 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)