Skip to content

Commit dd08d02

Browse files
committed
clk-rebase: Use actions/checkout and ga bot identity
1 parent d8f7ea0 commit dd08d02

File tree

1 file changed

+18
-6
lines changed

1 file changed

+18
-6
lines changed

.github/workflows/clk-rebase.yml

Lines changed: 18 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,25 @@ jobs:
4949
# with --allowerasing
5050
dnf install curl --allowerasing -y
5151
52-
- name: Clone repositories
53-
run: |
54-
git config --global user.email "[email protected]"
55-
git config --global user.name "Brett Mastbergen"
52+
- name: Checkout kernel-src-tree
53+
uses: actions/checkout@v4
54+
with:
55+
repository: ctrliq/kernel-src-tree
56+
token: ${{ secrets.GITHUB_TOKEN }}
57+
path: kernel-src-tree
58+
fetch-depth: 0
5659

57-
git clone https://oauth2:[email protected]/ctrliq/kernel-src-tree-tools
58-
git clone https://oauth2:[email protected]/ctrliq/kernel-src-tree
60+
- name: Checkout kernel-src-tree-tools
61+
uses: actions/checkout@v4
62+
with:
63+
repository: ctrliq/kernel-src-tree-tools
64+
token: ${{ secrets.GITHUB_TOKEN }}
65+
path: kernel-src-tree-tools
66+
67+
- name: Configure git
68+
run: |
69+
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com"
70+
git config --global user.name "github-actions[bot]"
5971
6072
- name: Perform rebase
6173
run: |

0 commit comments

Comments
 (0)