Skip to content

Merge branch 'update-d3-color' of github.com:ToyotaResearchInstitute/… #1137

Merge branch 'update-d3-color' of github.com:ToyotaResearchInstitute/…

Merge branch 'update-d3-color' of github.com:ToyotaResearchInstitute/… #1137

name: Version Bump Check
# Description:
# In this workflow we check for keywords in commit message to determine if
# a specific version bump is necessary. This check runs on every push and can
# perform version updates before and during a pull request.
on: push
jobs:
check_push_version_bump:
name: 'Check Push Version Bump'
runs-on: ubuntu-latest
steps:
- name: "Checkout source code"
uses: actions/checkout@v3
- name: "Setup Node.js"
uses: actions/setup-node@v1
with:
node-version: 18
- name: "Automated Version Bump (Push)"
uses: 'phips28/gh-action-bump-version@master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
skip-tag: 'true'
minor-wording: 'minor,Minor,MINOR,add,Adds,ADD,ADDS,new,New,NEW,feat,Feat,FEAT,feature,Feature,FEATURE,features,Features,FEATURES'
major-wording: 'major,MAJOR,cut-major,Cut-Major,break,Break,BREAK,breaking,Breaking,BREAKING'
patch-wording: 'patch,Patch,PATCH,patches,Patches,PATCHES,fix,Fix,FIX,fixes,Fixes,FIXES'
rc-wording: 'RELEASE,alpha'