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" 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 }}" 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 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}}