Skip to content

chore(deps-dev): bump conventional-changelog-cli from 2.2.2 to 4.1.0 #391

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions .github/workflows/rebase.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# .github/workflows/sync.yml
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: # all args are optional
# upstream: <user>/<repo>
# branch: master
8 changes: 8 additions & 0 deletions Repofile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"maintainers": [
"Developer productivity"
],
"checks": [
"commitlint"
]
}
16 changes: 16 additions & 0 deletions catalog-info.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
apiVersion: backstage.io/v1alpha1
kind: Component
metadata:
name: commitlint-github-action
description: |
Lints Pull Request commits with commitlint.
annotations:
github.com/project-slug: Tradeshift/commitlint-github-action
tags:
- github-action
- nodejs
- fork
spec:
type: library
owner: sre
lifecycle: production
Loading