From fd74cc14f5396177c7e7e5168cf5e6343d8b25f0 Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Sun, 23 Jun 2024 05:17:53 -0700 Subject: [PATCH 1/4] Delete .github/workflows/auto-approve.yml --- .github/workflows/auto-approve.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/auto-approve.yml diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml deleted file mode 100644 index a1bb62f..0000000 --- a/.github/workflows/auto-approve.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Auto approve - -on: pull_request - -permissions: - contents: read - -jobs: - auto-approve: - - name: Auto approve Pull Request - runs-on: ubuntu-latest - - # for hmarr/auto-approve-action to approve PRs - permissions: - pull-requests: write - - # Only run this on the main repo - if: github.event.pull_request.head.repo.full_name == 'EmotionChild/SupportChild' - - steps: - - name: Approve via actions - uses: hmarr/auto-approve-action@v2.2.1 - if: github.actor == 'EmotionChild' || github.actor == 'dependabot[bot]' - with: - github-token: "${{ secrets.GITHUB_TOKEN }}" -- 2.34.1 From 851e26f530be139d5f0ed8234f28467afd3a287c Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Sun, 23 Jun 2024 05:17:59 -0700 Subject: [PATCH 2/4] Delete .github/workflows/msbuild.yml --- .github/workflows/msbuild.yml | 39 ----------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/msbuild.yml diff --git a/.github/workflows/msbuild.yml b/.github/workflows/msbuild.yml deleted file mode 100644 index 7dfa7ac..0000000 --- a/.github/workflows/msbuild.yml +++ /dev/null @@ -1,39 +0,0 @@ -name: MSBuild - -on: - push: - branches: [ "main" ] - pull_request: - branches: [ "main" ] - -env: - # Path to the solution file relative to the root of the project. - SOLUTION_FILE_PATH: . - - # Configuration type to build. - # You can convert this to a build matrix if you need coverage of multiple configuration types. - # https://docs.github.com/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - BUILD_CONFIGURATION: Release - -permissions: - contents: read - -jobs: - build: - runs-on: windows-latest - - steps: - - uses: actions/checkout@v3 - - - name: Add MSBuild to PATH - uses: microsoft/setup-msbuild@v1.0.2 - - - name: Restore NuGet packages - working-directory: ${{env.GITHUB_WORKSPACE}} - run: nuget restore ${{env.SOLUTION_FILE_PATH}} - - - name: Build - working-directory: ${{env.GITHUB_WORKSPACE}} - # Add additional options to the MSBuild command line here (like platform or verbosity level). - # See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference - run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}} -- 2.34.1 From 57a1a907473d1e5b3246218fa8e6ffa9471227cc Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Sun, 23 Jun 2024 05:18:07 -0700 Subject: [PATCH 3/4] Delete .github/workflows/dotnet.yml --- .github/workflows/dotnet.yml | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 .github/workflows/dotnet.yml diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml deleted file mode 100644 index 7535d0a..0000000 --- a/.github/workflows/dotnet.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: .NET - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build: - - runs-on: self-hosted - - steps: - - uses: actions/checkout@v3 - - name: Setup .NET - uses: actions/setup-dotnet@v2 - with: - dotnet-version: 6.0.x - - name: Restore dependencies - run: dotnet restore - - name: Build - run: dotnet build --no-restore - - name: Test - run: dotnet test --no-build --verbosity normal \ No newline at end of file -- 2.34.1 From cb166ec9635f4d9f97baecc0fa583ccd9dc36b9d Mon Sep 17 00:00:00 2001 From: toastie_t0ast Date: Sun, 23 Jun 2024 05:18:14 -0700 Subject: [PATCH 4/4] Delete .github/dependabot.yml --- .github/dependabot.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index ec6938d..0000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,18 +0,0 @@ -# To get started with Dependabot version updates, you'll need to specify which -# package ecosystems to update and where the package manifests are located. -# Please see the documentation for all configuration options: -# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates - -version: 2 -updates: - - package-ecosystem: "nuget" # See documentation for possible values - directory: "/" # Location of package manifests - schedule: - interval: "daily" - open-pull-requests-limit: 5 - reviewers: - - EmotionChild - target-branch: "staging" - labels: - - "nuget" - - "dependencies" -- 2.34.1