Browse Source

Disable safe.directory check (#19970)

pull/19978/head
Joel Challis 1 year ago
committed by GitHub
parent
commit
53727062db
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 19 additions and 0 deletions
  1. +4
    -0
      .github/workflows/cli.yml
  2. +3
    -0
      .github/workflows/format.yml
  3. +3
    -0
      .github/workflows/format_push.yml
  4. +3
    -0
      .github/workflows/lint.yml
  5. +3
    -0
      .github/workflows/regen.yml
  6. +3
    -0
      .github/workflows/regen_push.yml

+ 4
- 0
.github/workflows/cli.yml View File

@ -21,9 +21,13 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install dependencies
run: pip3 install -r requirements-dev.txt
- name: Run tests


+ 3
- 0
.github/workflows/format.yml View File

@ -22,6 +22,9 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
with:
fetch-depth: 0


+ 3
- 0
.github/workflows/format_push.yml View File

@ -16,6 +16,9 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
with:
fetch-depth: 0


+ 3
- 0
.github/workflows/lint.yml View File

@ -15,6 +15,9 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
with:
fetch-depth: 0


+ 3
- 0
.github/workflows/regen.yml View File

@ -16,6 +16,9 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
- name: Run qmk generators


+ 3
- 0
.github/workflows/regen_push.yml View File

@ -16,6 +16,9 @@ jobs:
container: qmkfm/qmk_cli
steps:
- name: Disable safe.directory check
run : git config --global --add safe.directory '*'
- uses: actions/checkout@v3
- name: Run qmk generators


Loading…
Cancel
Save