Skip to content

Commit c7d66a0

Browse files
authored
Typo (#46)
<!-- markdownlint-disable MD041 --> #### What this PR does / why we need it #### Which issue(s) this PR fixes <!-- Usage: `Fixes #<issue number>`, or `Fixes (paste link of issue)`. -->
1 parent 736ba65 commit c7d66a0

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/rotate-bdba-token.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Generate GitHub token
14-
id: generate-github-token
14+
id: generate-token
1515
uses: tibdex/github-app-token@v2
1616
with:
1717
app_id: ${{ secrets.OCMBOT_APP_ID }}
@@ -49,12 +49,11 @@ jobs:
4949
- name: Update organization secret
5050
run: |
5151
# Authenticate with the GitHub CLI and set the secret on org level
52-
gh auth login --with-token <<< ${{ steps.generate_token.outputs.token }}
52+
gh auth login --with-token <<< ${{ steps.generate-token.outputs.token }}
5353
5454
gh secret set BDBA_API_TOKEN \
5555
--org open-component-model \
5656
--visibility all \
57-
--body "${{ steps.generate_bdba_token.outputs.bdba_token }}"
57+
--body "${{ steps.generate-bdba-token.outputs.bdba_token }}"
5858
5959
echo "BDBA API token successfully rotated at $(date)"
60-

0 commit comments

Comments
 (0)