File tree Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Expand file tree Collapse file tree 2 files changed +35
-0
lines changed Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
1
+ This is a fork of torch-mlir for maintaining patches.
You can’t perform that action at this time.
0 commit comments