Skip to content

Commit

Permalink
Introduce orphan main branch.
Browse files Browse the repository at this point in the history
  • Loading branch information
stellaraccident committed May 10, 2024
0 parents commit ccfe6cc
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/advance_forks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# 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_torch_mlir:
name: "Advance torch-mlir"
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/torch-mlir.git
git pull --ff-only upstream main
- name: Pushing changes
run: |
git push
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
This is a fork of torch-mlir for maintaining patches.

0 comments on commit ccfe6cc

Please sign in to comment.