Skip to content

Commit 18c61c9

Browse files
committed
clk-rebase: Use actions/checkout and ga bot identity
1 parent a08ddee commit 18c61c9

File tree

1 file changed

+17
-6
lines changed

1 file changed

+17
-6
lines changed

.github/workflows/clk-rebase.yml

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,24 @@ 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
5658

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

0 commit comments

Comments
 (0)