Skip to content

Commit ae9a098

Browse files
authored
Merge pull request #386 from aherrmann/release-workflow
chore: pass token secrets from release workflow
2 parents de42c0b + b593777 commit ae9a098

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111

1212
# Allows you to call this workflow from another workflow
1313
workflow_call:
14+
secrets:
15+
BUILDBUDDY_API_KEY:
16+
description: The BuildBuddy remote execution access token.
17+
required: true
1418

1519
# Allows you to run this workflow manually from the Actions tab
1620
workflow_dispatch:

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ permissions:
1414
jobs:
1515
tests:
1616
uses: ./.github/workflows/ci.yaml
17+
secrets:
18+
BUILDBUDDY_API_KEY: ${{ secrets.BUILDBUDDY_API_KEY }}
1719

1820
release:
1921
needs: [tests]

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,6 @@ repos:
3636
- id: renovate-config-validator
3737
# Check validity of GitHub actions configuration
3838
- repo: https://github.com/mpalmer/action-validator
39-
rev: v0.5.1
39+
rev: v0.6.0
4040
hooks:
4141
- id: action-validator

0 commit comments

Comments
 (0)