From e768735c98b4b73b6d9160e57be7fe6827ae78ba Mon Sep 17 00:00:00 2001 From: Guilherme Branco Stracini Date: Sat, 26 Oct 2024 04:43:58 +0100 Subject: [PATCH] Delete .github/workflows/ci-pipeline.yml --- .github/workflows/ci-pipeline.yml | 36 ------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/ci-pipeline.yml diff --git a/.github/workflows/ci-pipeline.yml b/.github/workflows/ci-pipeline.yml deleted file mode 100644 index 1aabcd2b..00000000 --- a/.github/workflows/ci-pipeline.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: CI Pipeline - -on: - pull_request: - branches: - - main - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - name: Checkout Repository - uses: actions/checkout@v3 - - - name: Set Up .NET - uses: actions/setup-dotnet@v3 - with: - dotnet-version: '6.0.x' - - - name: Restore Dependencies - run: dotnet restore - - - name: Build - run: dotnet build --no-restore - - - name: Run Tests - run: dotnet test --no-build --verbosity normal - - - name: Get Remote File Content - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - PATH_TO_FILE="src/commit_message_processor.cs" # specify the correct path - ENCODED_REF=$(echo "${GITHUB_REF}" | jq -s -R -r @uri) - curl -H "Authorization: token $GITHUB_TOKEN" "https://api.github.com/repos/guibranco/dotnet-aicommitmessage/contents/${PATH_TO_FILE}?ref=${ENCODED_REF}" -o retrieved_file.cs