Skip to content
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

meta: align renovate config with main repo #702

Merged
merged 4 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ on:
push:
branches:
- main
- renovate/** # support automergeType=branch

jobs:
build:
Expand All @@ -18,14 +19,14 @@ jobs:
node-version: 20.x
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn lint-no-fix
- run: yarn typecheck
- run: yarn sync
- run: yarn build
- name: Prepare Netlify dependencies
run: npm install netlify-cli -g
if: github.ref == 'refs/heads/main' # do not publish renovate branches
- name: Deploy to Netlify
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: sequelize-site
run: netlify deploy --dir build --prod --message '${{ github.event.commits[0].message }}'
if: github.ref == 'refs/heads/main' # do not publish renovate branches
1 change: 1 addition & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
":semanticCommitScopeDisabled"
],
"automergeStrategy": "squash",
"automergeType": "branch",
"semanticCommitType": "meta",
"ignorePaths": ["static/"],
"packageRules": [
Expand Down