Skip to content

Commit a70c49f

Browse files
Jesper Terkelsentradeshiftcicomponents
authored andcommitted
feat: mark team ownership in Tradeshift
- mark team ownership in tradeshift - setup rebase automation
1 parent 861c151 commit a70c49f

File tree

2 files changed

+37
-0
lines changed

2 files changed

+37
-0
lines changed

.github/workflows/rebase.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

catalog-info.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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

0 commit comments

Comments
 (0)