diff options
| author | John Titor <50095635+JohnRTitor@users.noreply.github.com> | 2025-01-15 11:04:30 +0530 |
|---|---|---|
| committer | Wolfgang Walther <walther@technowledgy.de> | 2025-02-01 11:41:35 +0100 |
| commit | 0e8dc9b9277345f4089b08c392f3f85661a3e1d7 (patch) | |
| tree | b20f5a130b8e323b1304f9f2a3c56c9ef605b2d5 | |
| parent | workflows/periodic-merges: use nixpkgs-ci's token (diff) | |
| download | nixpkgs-0e8dc9b9277345f4089b08c392f3f85661a3e1d7.tar.gz | |
workflows/periodic-merges: explicitly inherit the secrets
Apparently since we are callling a reusable workflow here, we need to explicitly pass the secrets. :(
(cherry picked from commit 38ebbf7c4fc018170ac80582f83eb076694ab010)
| -rw-r--r-- | .github/workflows/periodic-merge-24h.yml | 1 | ||||
| -rw-r--r-- | .github/workflows/periodic-merge-6h.yml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/periodic-merge-24h.yml b/.github/workflows/periodic-merge-24h.yml index c2bae9d5b9b9..9090eb17a965 100644 --- a/.github/workflows/periodic-merge-24h.yml +++ b/.github/workflows/periodic-merge-24h.yml @@ -37,3 +37,4 @@ jobs: with: from: ${{ matrix.pairs.from }} into: ${{ matrix.pairs.into }} + secrets: inherit diff --git a/.github/workflows/periodic-merge-6h.yml b/.github/workflows/periodic-merge-6h.yml index fcdc3994b7f7..f7ffec99a4df 100644 --- a/.github/workflows/periodic-merge-6h.yml +++ b/.github/workflows/periodic-merge-6h.yml @@ -35,3 +35,4 @@ jobs: with: from: ${{ matrix.pairs.from }} into: ${{ matrix.pairs.into }} + secrets: inherit |
