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
7 changes: 7 additions & 0 deletions .github/workflows/sync_from_upstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,17 @@ jobs:
env:
UPSTREAM_REMOTE: https://github.com/llvm/llvm-project.git
steps:
- name: Configure Access Token
uses: actions/create-github-app-token@v1
id: generate-token
with:
app-id: ${{ secrets.SYNC_APP_ID }}
private-key: ${{ secrets.SYNC_APP_PRIVATE_KEY }}
- name: Checkout
uses: actions/checkout@v4
with:
ref: ${{ matrix.branch }}
token: ${{ steps.generate-token.outputs.token }}
- name: Configure Upstream Remote
run: git remote add upstream ${{ env.UPSTREAM_REMOTE }}
- name: Fetch Upstream Changes
Expand Down