Hi, I’m Dung Huynh Duc . Nice to meet you.

About Me

With over a decade of experience under my belt as a full-stack developer, I've had the opportunity to spearhead project teams at tech startups in Vietnam, Thailand, Japan and Singapore. Additionally, I have worked as a freelance engineer for various companies based in Asia Pacific, Europe, and North America.

Presently, I serve the role of a Senior Full Stack Software Engineer at ACX. I am consistently committed to exploring and acquiring knowledge on emerging and popular technologies.

renovate
auto-merge

#TIL 33 - Auto-merge your pull request on GitHub with Renovate bot

blog_hero_#TIL 33 - Auto-merge your pull request on GitHub with Renovate bot

This is a neat trick for auto-merge your pull request on GitHub with Renovate bot if that's passed the check (build, linter) for non-major update packages.

Here is the renovate.json file.

{
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
  "extends": [
    "config:base",
    "group:allNonMajor",
    ":pinAllExceptPeerDependencies"
  ],
  "lockFileMaintenance": {
    "enabled": true
  },
  "automerge": true,
  "major": {
    "automerge": false
  }
}