Skip to content

ci+doc: pull request template, version instructions, pkgdown #2

ci+doc: pull request template, version instructions, pkgdown

ci+doc: pull request template, version instructions, pkgdown #2

# this action: https://github.com/marketplace/actions/version-bumper
# also see the options file for configuration
name: Manage versions
# not actually on all pushes, see the options file
on: [push]
jobs:
bump:
#if: github.event.pull_request.merged == true
runs-on: ubuntu-latest
steps:
# Checkout action is required
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "12"
- name: Bump Versions
uses: michmich112/version-bumper@master
with:
options-file: "./.github/workflows/version_bump_options.json"
github-token: ${{ secrets.GITHUB_TOKEN }}