Skip to content

Commit d4c8d14

Browse files
committed
Pass secrets from workflows
1 parent f5633a1 commit d4c8d14

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/sycl-benchmark-aggregate.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,13 @@ on:
2222
lookback_days:
2323
type: number
2424
required: true
25+
secrets:
26+
LLVM_SYCL_BENCHMARK_TOKEN:
27+
description: |
28+
Github token used by the faceless account to push newly calculated
29+
medians.
30+
required: true
31+
2532

2633
permissions:
2734
contents: read

.github/workflows/sycl-nightly.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,10 @@ jobs:
240240
if: always() && !cancelled()
241241
name: Aggregate benchmark results and produce historical averages
242242
uses: ./.github/workflows/sycl-benchmark-aggregate.yml
243-
secrets: inherit
243+
secrets:
244+
LLVM_SYCL_BENCHMARK_TOKEN: ${{ secrets.LLVM_SYCL_BENCHMARK_TOKEN }}
244245
with:
245-
lookback_days: 100secrets: inherit
246+
lookback_days: 100
246247

247248
run-sycl-benchmarks:
248249
needs: [ubuntu2204_build, aggregate_benchmark_results]

0 commit comments

Comments
 (0)