File tree Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Expand file tree Collapse file tree 2 files changed +37
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : Rebase Upstream
2
+ on :
3
+ schedule :
4
+ - cron : " 0 0 * * 0" # run once a week
5
+ workflow_dispatch : # run manually
6
+
7
+ jobs :
8
+ sync :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - uses : actions/checkout@master
12
+ with :
13
+ fetch-depth : 0 # fetching all history so i can rebase
14
+ token : ${{ secrets.GH_TOKEN }}
15
+ - name : Configure git for tradeshiftci
16
+ uses : tradeshift/actions-git/configure-from-gpg-key@v1
17
+ with :
18
+ gpg-key : ${{ secrets.TRADESHIFTCI_GPG_KEY }}
19
+ - uses : tradeshift/rebase-upstream-action@master
20
+ with :
21
+ branch : main
Original file line number Diff line number Diff line change
1
+ apiVersion : backstage.io/v1alpha1
2
+ kind : Component
3
+ metadata :
4
+ name : actions-create-or-update-comment
5
+ description : |
6
+ A GitHub action to create or update an issue or pull request comment
7
+ annotations :
8
+ github.com/project-slug : Tradeshift/actions-create-or-update-comment
9
+ tags :
10
+ - github-action
11
+ - nodejs
12
+ - fork
13
+ spec :
14
+ type : library
15
+ owner : developer-productivity
16
+ lifecycle : production
You can’t perform that action at this time.
0 commit comments