Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.0.0 #18

Merged
merged 14 commits into from
Aug 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/ISSUE_TEMPLATE/bug_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Bug Report
description: File a bug report
title: "🐛 "
labels: ["🐛 Bug"]
assignees:
- Limmek
body:
- type: checkboxes
attributes:
Expand All @@ -26,15 +28,14 @@ body:
options:
- Retail (Default)
- Classic
- Wrath of the Lich King Classic
validations:
required: true

- type: checkboxes
id: testing
attributes:
label: Tested with only Shitlist
description: Did you try having Shitlist as the only enabled addon and everything else disabled?
label: Tested with only Personal Player Notes
description: Did you try having Personal Player Notes as the only enabled addon and everything else disabled?
options:
- label: "Yes"
required: true
Expand Down
1 change: 0 additions & 1 deletion .github/issuecomplete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,3 @@ keywords:
- version
- Retail
- Classic
- Wotlk
5 changes: 2 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@ name: Package and release

on:
workflow_dispatch:
push:
tags:
- "**"
workflow_run:
workflows: ['Auto Release']

jobs:
run:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/tag_and_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Auto Release

on:
workflow_dispatch:
pull_request:
types: [closed]

jobs:
build:
runs-on: ubuntu-latest
if: github.event.pull_request.merged && github.event.pull_request.base.ref == 'master'
steps:
- uses: actions/checkout@v4

- name: Tag and prepare release
id: tag_and_prepare_release
uses: K-Phoen/semver-release-action@master
with:
release_branch: ${{ github.event.pull_request.base.ref }}
release_strategy: tag
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Upload release notes
if: steps.tag_and_prepare_release.outputs.tag
uses: Roang-zero1/github-create-release-action@v3
with:
created_tag: ${{ steps.tag_and_prepare_release.outputs.tag }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Loading