Skip to content

Commit 6d08698

Browse files
Clean up Devolutions migration leftovers (#4454)
* Remove issue template auto-assignees * Remove Tolgee workflows and scripts * Update icons workflow repository guard * Remove project funding links * Update security disclosure links * Require explicit release version input * Fix broken README links
1 parent 0563b4a commit 6d08698

27 files changed

Lines changed: 191 additions & 1039 deletions

.github/FUNDING.yml

Lines changed: 0 additions & 12 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/bug-issue.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: '🐞 Report a bug or an issue'
22
description: Report issues or unexpected behaviors.
33
title: "[BUG] (Enter your description here)"
44
labels: ["bug"]
5-
assignees: marticliment
65
body:
76
- type: checkboxes
87
attributes:

.github/ISSUE_TEMPLATE/enhancement-improvement.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: '🚧 Suggest an improvement for an existing feature'
22
description: Propose an improvement to UniGetUI.
33
title: "[IMPROVEMENT] (Enter your description here)"
44
labels: ["enhancement"]
5-
assignees: marticliment
65
body:
76
- type: checkboxes
87
attributes:
@@ -11,9 +10,9 @@ body:
1110
options:
1211
- label: I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue.
1312
required: true
14-
- label: This improvement refers to an existing feature. If you want to suggest a new feature, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?assignees=marticliment&labels=new-feature&projects=&template=feature-request.yml&title=%5BFEATURE+REQUEST%5D+%28Enter+your+description+here%29).
13+
- label: This improvement refers to an existing feature. If you want to suggest a new feature, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?labels=new-feature&projects=&template=feature-request.yml&title=%5BFEATURE+REQUEST%5D+%28Enter+your+description+here%29).
1514
required: true
16-
- label: This improvement is not a bug. If you want to report a bug, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?assignees=marticliment&labels=bug&projects=&template=bug-issue.yml&title=%5BBUG%5D+%28Enter+your+description+here%29).
15+
- label: This improvement is not a bug. If you want to report a bug, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?labels=bug&projects=&template=bug-issue.yml&title=%5BBUG%5D+%28Enter+your+description+here%29).
1716
required: true
1817
- type: textarea
1918
attributes:

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: '💡 Propose a new feature'
22
description: Propose a new feature that could be useful in UniGetUI.
33
title: "[FEATURE REQUEST] (Enter your description here)"
44
labels: ["new-feature"]
5-
assignees: marticliment
65
body:
76
- type: checkboxes
87
attributes:
@@ -11,7 +10,7 @@ body:
1110
options:
1211
- label: I have searched for my feature proposal and have not found a work-in-progress/duplicate/resolved/discarded issue.
1312
required: true
14-
- label: This proposal is a completely new feature. If you want to suggest an improvement or an enhancement, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?assignees=marticliment&labels=enhancement&projects=&template=enhancement-improvement.yml&title=%5BENHANCEMENT%5D+%28Enter+your+description+here%29).
13+
- label: This proposal is a completely new feature. If you want to suggest an improvement or an enhancement, please use [this template](https://github.com/Devolutions/UniGetUI/issues/new?labels=enhancement&projects=&template=enhancement-improvement.yml&title=%5BENHANCEMENT%5D+%28Enter+your+description+here%29).
1514
required: true
1615
- type: textarea
1716
attributes:

.github/ISSUE_TEMPLATE/hard-crash.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: '🚑 Report a crash or a hang'
22
description: UniGetUI is not launching, is hard-crashing, or is hanging at some point.
33
title: "[CRASH] (Enter your description here)"
44
labels: ["bug", "important"]
5-
assignees: marticliment
65
body:
76
- type: checkboxes
87
attributes:

.github/ISSUE_TEMPLATE/widgets-issue.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ name: '🧩 Report an issue with Widgets for UniGetUI'
22
description: Report issues or unexpected behaviors with Widgets for UniGetUI.
33
title: "[WIDGETS BUG] (Enter your description here)"
44
labels: ["bug", "widgets-for-unigetui"]
5-
assignees: marticliment
65
body:
76
- type: checkboxes
87
attributes:

.github/workflows/build-release.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@ on:
44
workflow_dispatch:
55
inputs:
66
version:
7-
description: 'Release version (e.g. 3.3.7)'
8-
default: "latest"
7+
description: 'Release version (required, e.g. 2026.1.0)'
98
required: true
109
draft-release:
1110
description: 'Create the GitHub Release as a draft'
@@ -63,14 +62,8 @@ jobs:
6362
}
6463
6564
$PackageVersion = '${{ inputs.version }}'
66-
if ([string]::IsNullOrEmpty($PackageVersion) -or $PackageVersion -eq 'latest') {
67-
# Read version from SharedAssemblyInfo.cs
68-
$match = Select-String -Path 'src/SharedAssemblyInfo.cs' -Pattern 'AssemblyInformationalVersion\("([^"]+)"\)'
69-
if ($match) {
70-
$PackageVersion = $match.Matches[0].Groups[1].Value
71-
} else {
72-
$PackageVersion = (Get-Date -Format "yyyy.M.d") + ".0"
73-
}
65+
if ([string]::IsNullOrWhiteSpace($PackageVersion)) {
66+
throw "The workflow_dispatch version input is required."
7467
}
7568
7669
echo "package-env=$PackageEnv" >> $Env:GITHUB_OUTPUT

.github/workflows/translations-test.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

.github/workflows/update-icons.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
load-icons:
10-
if: github.repository == 'marticliment/UniGetUI'
10+
if: github.repository == 'Devolutions/UniGetUI'
1111
runs-on: windows-latest
1212

1313
steps:

.github/workflows/update-tolgee.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)