Skip to content

Commit 14348ab

Browse files
committed
github/workflows/fstests.yml: set git user and use 12 chars for prefix
Set the commit user and email address to our mailing list and also increase the commit prefix to 12 characters as 4 is too small to git show the git sha1sum commit ID. Signed-off-by: Luis Chamberlain <[email protected]>
1 parent 82830dd commit 14348ab

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/fstests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,13 @@ jobs:
3131
- name: Configure git
3232
run: |
3333
git config --global --add safe.directory '*'
34+
git config --global user.name "kdevops"
35+
git config --global user.email "[email protected]"
3436
3537
- name: Run kdevops make defconfig-repo
3638
run: |
3739
KDEVOPS_TREE_REF="${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}"
38-
SHORT_PREFIX="$(echo ${KDEVOPS_TREE_REF:0:4})"
40+
SHORT_PREFIX="$(echo ${KDEVOPS_TREE_REF:0:12})"
3941
make KDEVOPS_HOSTS_PREFIX="$SHORT_PREFIX" defconfig-xfs_reflink_4k
4042
4143
- name: Run kdevops make

0 commit comments

Comments
 (0)