mirror of https://github.com/Lissy93/dashy.git
🏗️ Marks issues as fixed, once PR is merged
This commit is contained in:
parent
b2a0a91720
commit
68f02e3b56
|
@ -1,16 +1,27 @@
|
||||||
# Creates a new tag, whenever the app version (in package.json) is updated in master
|
# Creates a new tag, whenever the app version (in package.json) is updated in master
|
||||||
name: 🏗️ Create Tag on Version Change
|
# And marks any relevant issues as fixed
|
||||||
|
name: 🏗️ Release Tag new Versions
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches:
|
||||||
- master
|
- master
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
tag-pre-release:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- uses: butlerlogic/action-autotag@stable
|
- uses: butlerlogic/action-autotag@stable
|
||||||
with:
|
with:
|
||||||
GITHUB_TOKEN: '${{ secrets.BOT_GITHUB_TOKEN }}'
|
GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
strategy: package
|
strategy: package
|
||||||
commit_message_template: "🔖 {{number}} {{message}} (by {{author}})\nSHA: {{sha}}\n."
|
commit_message_template: "🔖 {{number}} {{message}} (by {{author}})\nSHA: {{sha}}\n."
|
||||||
|
mark-issue-fixed:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- uses: butlerlogic/action-autotag@stable
|
||||||
|
- name: Label Fixed Issues
|
||||||
|
uses: gh-bot/fix-labeler@master
|
||||||
|
with:
|
||||||
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
||||||
|
label: '✅ Fixed'
|
Loading…
Reference in New Issue