Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
ci: fix the propagation of TEST_USER_GITHUB
A typo in the reference to the repository-level `TEST_USER_GITHUB`
variable was causing export tests under //bridge/github to be skipped.
This change resolves this issue.

Change-Id: Ia1ad61e54e305bb073efc6853738d3eed81d576c
  • Loading branch information
sudoforge committed May 17, 2025
commit de7def3f81745c0c24a482a1e9a5dcb4fbbd69dd
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- name: Test
run: make test
env:
GITHUB_USER: ${{ env.TEST_USER_GITHUB }}
GITHUB_USER: ${{ vars.TEST_USER_GITHUB }}
GITHUB_TOKEN: ${{ secrets.TEST_TOKEN_GITHUB }}
GITHUB_TOKEN_PRIVATE: ${{ secrets._GITHUB_TOKEN_PRIVATE }}
GITHUB_TOKEN_PUBLIC: ${{ secrets._GITHUB_TOKEN_PUBLIC }}
Expand Down
Loading