forked from peter-evans/create-or-update-comment
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: mark team ownership in Tradeshift
- mark team ownership in tradeshift - setup rebase automation
- Loading branch information
1 parent
2cbfe8b
commit 212b723
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Rebase Upstream | ||
on: | ||
schedule: | ||
- cron: "0 0 * * 0" # run once a week | ||
workflow_dispatch: # run manually | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 0 # fetching all history so i can rebase | ||
token: ${{ secrets.GH_TOKEN }} | ||
- name: Configure git for tradeshiftci | ||
uses: tradeshift/actions-git/configure-from-gpg-key@v1 | ||
with: | ||
gpg-key: ${{ secrets.TRADESHIFTCI_GPG_KEY }} | ||
- uses: tradeshift/rebase-upstream-action@master | ||
with: | ||
branch: main |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
apiVersion: backstage.io/v1alpha1 | ||
kind: Component | ||
metadata: | ||
name: actions-create-or-update-comment | ||
description: | | ||
A GitHub action to create or update an issue or pull request comment | ||
annotations: | ||
github.com/project-slug: Tradeshift/actions-create-or-update-comment | ||
tags: | ||
- github-action | ||
- nodejs | ||
- fork | ||
spec: | ||
type: library | ||
owner: developer-productivity | ||
lifecycle: production |