ci+doc: pull request template, version instructions, pkgdown #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |