Skip to content

Changed license and devcontainer tweaks #8

Changed license and devcontainer tweaks

Changed license and devcontainer tweaks #8

Workflow file for this run

name: pr-merge-action

Check failure on line 1 in .github/workflows/pr-merge.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/pr-merge.yaml

Invalid workflow file

`pull-request` is not a valid event name
run-name: increment package.json verion on pr merge
on:
pull-request:
types: [closed]
jobs:
version_bump:
# this job will only run if the PR has been merged
if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: ⏫ Bumping version
uses: jpb06/bump-package@latest
with:
major-keywords: BREAKING CHANGE
minor-keywords: feat,minor
patch-keywords: fix,chore
should-default-to-patch: true