housekeeping: update issue template for new workflow, add branch mirroring

This commit is contained in:
Brennen Bearnes
2022-12-04 19:38:42 -07:00
parent 0629b39815
commit 6d87df76cb
2 changed files with 19 additions and 3 deletions
+2 -3
View File
@@ -1,7 +1,6 @@
Prior to submitting a new issue make sure to complete these steps:
- [ ] Checkout the `dev` branch and confirm the issue is present there as well.
The `dev` branch contains fixes that may not have been merged to `master` yet.
- [ ] Post the syntax you are using (default/mediawiki/markdown) **and** your vimwiki settings from your `.vimrc`
- [ ] Include the VimWiki settings from your `.vimrc`
- [ ] Include the syntax you are using (default / Markdown / MediaWiki)
- [ ] Provide a detailed description of the problem including **steps to reproduce the issue**.
- [ ] Include the output of `:VimwikiShowVersion`.
+17
View File
@@ -0,0 +1,17 @@
on:
push:
branches:
- 'dev'
jobs:
mirror_job:
runs-on: ubuntu-latest
name: Mirror SOURCE_BRANCH_NAME branch to DESTINATION_BRANCH_NAME branch
steps:
- name: Mirror action step
id: mirror
uses: google/mirror-branch-action@v1.0
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
source: 'dev'
dest: 'master'