From b5f4c16266a3a4700adc17e63d81ce0934603a8f Mon Sep 17 00:00:00 2001 From: Oliver Booth <1129769+oliverbooth@users.noreply.github.com> Date: Thu, 13 Apr 2023 21:39:00 +0100 Subject: [PATCH 1/3] [ci skip] update bug-report.yml Adds 3.2.0 and "nightly/other" to version options. --- .github/ISSUE_TEMPLATE/bug-report.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 1f26214..207dc5a 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -37,6 +37,8 @@ body: label: Version description: What version of the package are you running? options: + - Nightly / other + - 3.2.0 - 3.1.0 - 3.0.0 - 2.6.0 @@ -47,6 +49,12 @@ body: - 2.1.0 validations: required: true + - type: input + id: other-version + attributes: + label: Other version + description: If you selected "nightly / other", please enter the full version number here. + placeholder: "Example: 4.0.0-nightly-230" - type: textarea id: logs attributes: From 1c584037081a6df5bd642afa38d421df9cc7408c Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 13 Apr 2023 21:55:00 +0100 Subject: [PATCH 2/3] [ci skip] ci: add workflow_dispatch trigger for sonarcloud --- .github/workflows/sonarcloud.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sonarcloud.yml b/.github/workflows/sonarcloud.yml index 3ac8f1b..7ee1360 100644 --- a/.github/workflows/sonarcloud.yml +++ b/.github/workflows/sonarcloud.yml @@ -3,6 +3,7 @@ on: push: branches: - main + workflow_dispatch: pull_request: types: [opened, synchronize, reopened] jobs: From a0d70eaa357f5242feb9ac317dbf5c06ccb93d0f Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Thu, 13 Apr 2023 21:55:20 +0100 Subject: [PATCH 3/3] [ci skip] ci: add workflows for push to any branch --- .github/workflows/dotnet.yml | 3 +-- .github/workflows/source_validator.yml | 3 +-- .github/workflows/unity.yml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 1a43ce2..b5c7648 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -3,8 +3,7 @@ name: .NET on: push: branches: - - main - - develop + - '*' pull_request: branches: - main diff --git a/.github/workflows/source_validator.yml b/.github/workflows/source_validator.yml index a0a21a8..aad570f 100644 --- a/.github/workflows/source_validator.yml +++ b/.github/workflows/source_validator.yml @@ -3,8 +3,7 @@ name: Source Validator on: push: branches: - - main - - develop + - '*' pull_request: types: [opened, synchronize, reopened] diff --git a/.github/workflows/unity.yml b/.github/workflows/unity.yml index 9db7ec3..e6b8c7a 100644 --- a/.github/workflows/unity.yml +++ b/.github/workflows/unity.yml @@ -3,8 +3,7 @@ name: Unity Test Runner on: push: branches: - - main - - develop + - '*' pull_request: branches: - main