Skip to content

Merge branch 'misc-dev' of https://github.com/FemboyKZ/bot into misc-dev #84

Merge branch 'misc-dev' of https://github.com/FemboyKZ/bot into misc-dev

Merge branch 'misc-dev' of https://github.com/FemboyKZ/bot into misc-dev #84

Workflow file for this run

name: Bump bot dev version
on:
push:
branches: [misc-dev]
paths-ignore:
- LICENSE
- README.md
- .gitignore
- '.github/*'
pull_request:
branches: [misc-dev]
paths-ignore:
- LICENSE
- README.md
- .gitignore
- '.github/*'
workflow_dispatch:
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Bump version
run: |
git config user.email "[email protected]"
git config user.name "GitHub Actions"
npm version patch
git push origin misc-dev