Skip to content

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.16.0 #49

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.16.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 7.8.0 to 7.16.0 #49

Workflow file for this run

name: GH PR Version bump
on:
pull_request_target:
types:
- labeled
env:
NODE_VERSION: 20
jobs:
patch-bump:
if: github.event.label.name == 'pr-version-patch'
runs-on: [ubuntu-latest]
steps:
- name: Bump version and changelog
uses: Drassil/action-package-version-bump@main
with:
user_name: "drassil-bot"
user_email: "[email protected]"
ref_branch: "master"
version_args: "patch"
node_version: ${{ env.NODE_VERSION }}
minor-bump:
if: github.event.label.name == 'pr-version-minor'
runs-on: [ubuntu-latest]
steps:
- name: Bump version and changelog
uses: Drassil/action-package-version-bump@main
with:
user_name: "drassil-bot"
user_email: "[email protected]"
ref_branch: "master"
version_args: "minor"
node_version: ${{ env.NODE_VERSION }}