From a5946b281ba7522b04181d688b04cc45b16ca77d Mon Sep 17 00:00:00 2001 From: Alexander Schulz Date: Sun, 31 Dec 2023 14:51:36 +0100 Subject: [PATCH] github scripts removed --- .github/CODEOWNERS | 1 - .github/ISSUE_TEMPLATE/bug_report.md | 30 -------------------- .github/workflows/main.yml | 41 ---------------------------- 3 files changed, 72 deletions(-) delete mode 100644 .github/CODEOWNERS delete mode 100644 .github/ISSUE_TEMPLATE/bug_report.md delete mode 100644 .github/workflows/main.yml diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS deleted file mode 100644 index 9ce13d8c9..000000000 --- a/.github/CODEOWNERS +++ /dev/null @@ -1 +0,0 @@ -* chris.lancaster@cloud.com danilo.delbusso@cloud.com konstantina.chremmou@cloud.com diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index fe9aa3ae5..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,30 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve - ---- - -**Describe the bug** -A clear and concise description of what the bug is. - -**To Reproduce** -Steps to reproduce the behavior: -1. Go to '...' -2. Click on '....' -3. Scroll down to '....' -4. See error - -**Expected behavior** -A clear and concise description of what you expected to happen. - -**Screenshots / Logfiles** -If applicable, add screenshots / logfiles to help explain your problem. - -**Hard-/Software involved:** - - Hardware: [e.g. Dell M620] - - Host XCP-ng Version: [e.g. 7.4.1] - - Client XCP-ng Center Version: [e.g. 7.4.2-RC2] - - Desktop OS: [e.g. Windows 10 1803] - -**Additional context** -Add any other context about the problem here. diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index 4d679c233..000000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,41 +0,0 @@ -name: Run checks -on: [push, pull_request] - -jobs: - job-checks: - name: Run checks - runs-on: windows-latest - steps: - - name: Checkout repo - uses: actions/checkout@v2 - - - name: Run copyright check - shell: powershell - run: ./scripts/check_copyright.ps1 -NOISY - - - name: Run I18n check - shell: powershell - run: ./scripts/check_i18n.ps1 -NOISY - - - name: Run spell check - shell: powershell - run: | - # package support for windows is not great; this is ugly, but will do for now - choco install cyg-get --no-progress - cyg-get.bat aspell aspell-en - $env:Path += ";C:\tools\cygwin\bin;" - ./scripts/check_spelling.ps1 -NOISY - - - name: Run string sort check - shell: powershell - run: ./scripts/check_strings_sorting.ps1 ` - -CHECK_LOCALIZED ` - -NOISY ` - -PATHS ./XenModel/Messages.resx, ./XenModel/FriendlyNames.resx, ` - ./XenModel/InvisibleMessages.resx, ./XenModel/UnitStrings.resx, ` - ./XenOvfApi/Content.resx, ./XenOvfApi/Messages.resx; ` - if($lastexitcode -eq 0){ ` - ./scripts/check_strings_sorting.ps1 ` - -NOISY ` - -PATHS ./Branding/Branding.resx ` - }