Ver Fonte

Set-up git information for Debian packaging

Maximilian Luz há 5 anos atrás
pai
commit
960d4e04ba
2 ficheiros alterados com 8 adições e 0 exclusões
  1. 4 0
      .github/workflows/debian.yml
  2. 4 0
      .github/workflows/debian_lts.yml

+ 4 - 0
.github/workflows/debian.yml

@@ -33,6 +33,10 @@ jobs:
       run: |
         cd pkg/debian/kernel
 
+        # setup git
+        git config --global user.email "surfacebot@users.noreply.github.com"
+        git config --global user.name "surfacebot"
+
         # get ubuntu mainline source
         # see https://kernel.ubuntu.com/~kernel-ppa/mainline
         git clone "$MAINLINE_REPO" --branch "$MAINLINE_BRANCH/v$KERNEL_VERSION" --depth 1 linux

+ 4 - 0
.github/workflows/debian_lts.yml

@@ -33,6 +33,10 @@ jobs:
       run: |
         cd pkg/debian/kernel-lts
 
+        # setup git
+        git config --global user.email "surfacebot@users.noreply.github.com"
+        git config --global user.name "surfacebot"
+
         # get ubuntu mainline source
         # see https://kernel.ubuntu.com/~kernel-ppa/mainline
         git clone "$MAINLINE_REPO" --branch "$MAINLINE_BRANCH/v$KERNEL_VERSION" --depth 1 linux