Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/blocks/bump-monorepo-versions/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ runs:

TOKEN="${APP_TOKEN:-$FALLBACK_TOKEN}"
git config --local --unset-all http.https://github.com/.extraheader || true
AUTH=$(echo -n "x-access-token:${TOKEN}" | base64)
AUTH=$(echo -n "x-access-token:${TOKEN}" | base64 | tr -d '\n')
git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ${AUTH}"

git config user.name "photon-release[bot]"
Expand Down
2 changes: 1 addition & 1 deletion .github/blocks/bump-npm-version/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ runs:

git config --local --unset-all http.https://github.com/.extraheader || true

AUTH=$(echo -n "x-access-token:${TOKEN}" | base64)
AUTH=$(echo -n "x-access-token:${TOKEN}" | base64 | tr -d '\n')
git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ${AUTH}"

- name: Pull latest changes
Expand Down
2 changes: 1 addition & 1 deletion .github/blocks/sync-crates-version/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ runs:
git config --local --unset-all http.https://github.com/.extraheader || true

# Set up authorization header (this is what actions/checkout uses)
AUTH=$(echo -n "x-access-token:${TOKEN}" | base64)
AUTH=$(echo -n "x-access-token:${TOKEN}" | base64 | tr -d '\n')
git config --local http.https://github.com/.extraheader "AUTHORIZATION: basic ${AUTH}"

- name: Setup Rust
Expand Down
Loading