From 6d87df76cb17bdc8632e0d7ca5f2dcc99c9852b5 Mon Sep 17 00:00:00 2001 From: Brennen Bearnes Date: Sun, 4 Dec 2022 19:38:42 -0700 Subject: [PATCH] housekeeping: update issue template for new workflow, add branch mirroring --- .github/issue_template.md | 5 ++--- .github/workflows/mirror.yml | 17 +++++++++++++++++ 2 files changed, 19 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/mirror.yml diff --git a/.github/issue_template.md b/.github/issue_template.md index d8cc987..fea0dcb 100644 --- a/.github/issue_template.md +++ b/.github/issue_template.md @@ -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`. diff --git a/.github/workflows/mirror.yml b/.github/workflows/mirror.yml new file mode 100644 index 0000000..f86bbef --- /dev/null +++ b/.github/workflows/mirror.yml @@ -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'