From af743a80c26fe13cbf8fdfc0623a7ad08a589d96 Mon Sep 17 00:00:00 2001 From: Collin Schwantes Date: Wed, 27 Apr 2022 10:18:10 -0500 Subject: [PATCH] repo must be designated as safe per github policy for containerized workflows --- .github/workflows/container-workflow-template.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/container-workflow-template.yml b/.github/workflows/container-workflow-template.yml index 569d152..70631fe 100644 --- a/.github/workflows/container-workflow-template.yml +++ b/.github/workflows/container-workflow-template.yml @@ -27,6 +27,12 @@ jobs: image: rocker/verse:4.1.2 steps: + + steps: + # update to: git config --global --add safe.directory /__w/your-repo/your-repo + - name: update permissions for container based workflows + run: git config --global --add safe.directory /__w/container-template/container-template + - uses: actions/checkout@v2 - name: Install system dependencies