Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: llvm/llvm-project
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: iree-org/llvm-project
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: default
Choose a head ref

There isn’t anything to compare.

llvm:main and iree-org:default are entirely different commit histories.

Showing with 33 additions and 0 deletions.
  1. +33 −0 .github/workflows/advance_forks.yml
33 changes: 33 additions & 0 deletions .github/workflows/advance_forks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Copyright 2022 The IREE Authors
#
# Licensed under the Apache License v2.0 with LLVM Exceptions.
# See https://llvm.org/LICENSE.txt for license information.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

name: Advance Upstream Forks

on:
schedule:
# Every hour
- cron: "0 * * * *"

workflow_dispatch:

jobs:
advance_llvm_project:
name: "Advance llvm-project"
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- name: Checking out repository
uses: actions/checkout@v3
with:
ref: main
- name: Pull from upstream
run: |
git remote add upstream https://github.com/llvm/llvm-project.git
git pull --ff-only upstream main
- name: Pushing changes
run: |
git push