This is an automated email from the ASF dual-hosted git repository.
alamb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/arrow-rs.git
The following commit(s) were added to refs/heads/master by this push:
new 4835659e5 Patch git permissions (#3660) (#3661)
4835659e5 is described below
commit 4835659e5f144d3a565fb58138ee80c8cbc42106
Author: Raphael Taylor-Davies <[email protected]>
AuthorDate: Sun Feb 5 10:35:30 2023 +0000
Patch git permissions (#3660) (#3661)
---
.github/actions/setup-builder/action.yaml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.github/actions/setup-builder/action.yaml
b/.github/actions/setup-builder/action.yaml
index 865ff66b9..aa1d1d9c1 100644
--- a/.github/actions/setup-builder/action.yaml
+++ b/.github/actions/setup-builder/action.yaml
@@ -65,3 +65,7 @@ runs:
- name: Enable backtraces
shell: bash
run: echo "RUST_BACKTRACE=1" >> $GITHUB_ENV
+ - name: Fixup git permissions
+ # https://github.com/actions/checkout/issues/766
+ shell: bash
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"