diff --git a/.github/workflows/install-arch-test.yml b/.github/workflows/install-arch-test.yml index ab583ca7..93ca8435 100644 --- a/.github/workflows/install-arch-test.yml +++ b/.github/workflows/install-arch-test.yml @@ -14,13 +14,6 @@ jobs: image: athenaos/base-devel:latest options: --privileged steps: - - -name: Send a request to webhook - env: - DISC_ACTION_TOKEN: ${{ secrets.DISC_ACTION_TOKEN }} - run: | - curl -H "Content-Type: application/json" -d "{\"content\": \"Athena install workflow started.\nBranch: ${{ github.ref }}\nCommit: ${{ github.sha }}\"}" $DISC_ACTION_TOKEN - - name: Checkout files uses: actions/checkout@v4 @@ -59,18 +52,3 @@ jobs: curl -o testcases/athenaos/${{env.RELEASE_VERSION}}/test_install_entire_disk_arch_with_xfce_sddm https://raw.githubusercontent.com/Athena-OS/athena/main/tests/test_install_entire_disk_arch_with_xfce_sddm QUICKEMU_WIDTH=1024 QUICKEMU_HEIGHT=768 ./quicktest test_install_entire_disk_arch_with_xfce_sddm athenaos ${{env.RELEASE_VERSION}} rm -rf ./machines/* - - - name: Workflow Test Result - if: always() - env: - DISC_ACTION_TOKEN: ${{ secrets.DISC_ACTION_TOKEN }} - run: | - if [ "${{ job.status }}" == "success" ]; then - STATUS="successful" - else - STATUS="failed" - fi - curl -H "Content-Type: application/json" -d {"content": Athena testing workflow completed with status: $STATUS.\nBranch: ${{ github.ref }}\nCommit: ${{ github.sha }}\"}" $DISC_ACTION_TOKEN - - -