diff --git a/.github/workflows/function_test_defender.yaml b/.github/workflows/function_test_defender.yaml index 65d6af64da..ca40d30149 100644 --- a/.github/workflows/function_test_defender.yaml +++ b/.github/workflows/function_test_defender.yaml @@ -1,6 +1,6 @@ # Run functional tests for Defender -name: Function Test Defender +name: Functional Tests Defender # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/function_test_entra.yaml b/.github/workflows/function_test_entra.yaml index ce302c1fd5..1c5e2bef17 100644 --- a/.github/workflows/function_test_entra.yaml +++ b/.github/workflows/function_test_entra.yaml @@ -1,6 +1,6 @@ # Run functional tests for Entra ID -name: Function Test Entra ID +name: Functional Tests Entra ID # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/function_test_exchange.yaml b/.github/workflows/function_test_exchange.yaml index e7fa6e3925..e99a75ffba 100644 --- a/.github/workflows/function_test_exchange.yaml +++ b/.github/workflows/function_test_exchange.yaml @@ -1,6 +1,6 @@ # Run functional tests for Exchange -name: Function Test Exchange +name: Functional Tests Exchange # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/function_test_powerplatform.yaml b/.github/workflows/function_test_powerplatform.yaml index 457ee0aa10..f7856302af 100644 --- a/.github/workflows/function_test_powerplatform.yaml +++ b/.github/workflows/function_test_powerplatform.yaml @@ -1,6 +1,6 @@ # Run functional tests for Power Platform -name: Function Test Power Platform +name: Functional Tests Power Platform # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/function_test_sharepoint.yaml b/.github/workflows/function_test_sharepoint.yaml index a52efd1b0c..723559eda0 100644 --- a/.github/workflows/function_test_sharepoint.yaml +++ b/.github/workflows/function_test_sharepoint.yaml @@ -1,6 +1,6 @@ # Run functional tests for Sharepoint -name: Function Test Sharepoint +name: Functional Tests Sharepoint # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/function_test_teams.yaml b/.github/workflows/function_test_teams.yaml index a8d470f34d..43ac8eeb3c 100644 --- a/.github/workflows/function_test_teams.yaml +++ b/.github/workflows/function_test_teams.yaml @@ -1,6 +1,6 @@ # Run functional tests for Teams -name: Function Test Teams +name: Functional Tests Teams # This is a reusable workflow called by the pipeline. on: diff --git a/.github/workflows/test_link.yaml b/.github/workflows/test_link.yaml deleted file mode 100644 index 6c411f5483..0000000000 --- a/.github/workflows/test_link.yaml +++ /dev/null @@ -1,41 +0,0 @@ -name: Test Link in Email - -on: - push: - paths: - - ".github/workflows/test_link.yaml" - -permissions: read-all - -jobs: - pass-job: - runs-on: ubuntu-latest - if: ${{ always() }} - steps: - - run: | - exit 1 - fail-job: - runs-on: ubuntu-latest - if: ${{ always() }} - steps: - - run: | - exit 1 - write-email: - name: Write Email - runs-on: ubuntu-latest - needs: - - pass-job - - fail-job - if: ${{ failure() }} - steps: - - name: Notify - uses: dawidd6/action-send-mail@v3 - with: - server_address: smtp.gmail.com - server_port: 465 - username: ${{ secrets.NOTIFIER_EMAIL_USERNAME }} - password: ${{ secrets.NOTIFIER_EMAIL_PASSWORD }} - subject: Nightly functional test failure - to: jgarriss@mitre.org - from: ScubaGear Notifier - body: This workflow just failed ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}