Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 6 additions & 7 deletions .github/workflows/mirror-intel-llvm-commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,12 @@ jobs:
pull-requests: write

steps:
- name: Configure Git
run: |
git config --global user.name "bb-ur"
git config --global user.email "[email protected]"
git config --global user.password ${{ secrets.GH_BB_TOKEN }}

- name: Checkout UR
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
Expand All @@ -37,13 +43,6 @@ jobs:
fetch-depth: 0
ref: sycl

- name: Configure Git
working-directory: ${{github.workspace}}/unified-runtime
run: |
git config user.name "bb-ur"
git config user.email "[email protected]"
git config user.password ${{ secrets.GH_BB_TOKEN }}

- name: Mirror commits
run: |
python3 unified-runtime/scripts/mirror-commits-from-intel-llvm.py unified-runtime intel-llvm
Expand Down