Skip to content

Commit ccfe6cc

Browse files
Introduce orphan main branch.
0 parents  commit ccfe6cc

File tree

2 files changed

+35
-0
lines changed

2 files changed

+35
-0
lines changed
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Copyright 2022 The IREE Authors
2+
#
3+
# Licensed under the Apache License v2.0 with LLVM Exceptions.
4+
# See https://llvm.org/LICENSE.txt for license information.
5+
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6+
7+
name: Advance Upstream Forks
8+
9+
on:
10+
schedule:
11+
# Every hour
12+
- cron: "0 * * * *"
13+
14+
workflow_dispatch:
15+
16+
jobs:
17+
advance_torch_mlir:
18+
name: "Advance torch-mlir"
19+
runs-on: ubuntu-22.04
20+
permissions:
21+
contents: write
22+
steps:
23+
- name: Checking out repository
24+
uses: actions/checkout@v3
25+
with:
26+
ref: main
27+
28+
- name: Pull from upstream
29+
run: |
30+
git remote add upstream https://github.com/llvm/torch-mlir.git
31+
git pull --ff-only upstream main
32+
- name: Pushing changes
33+
run: |
34+
git push

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
This is a fork of torch-mlir for maintaining patches.

0 commit comments

Comments
 (0)