From 8144d43ae5df2eb371bffa6db08593a8fc6f8ef8 Mon Sep 17 00:00:00 2001 From: Adrian Stobbe Date: Mon, 27 Nov 2023 15:28:10 +0100 Subject: [PATCH] remove old teams notify action --- .github/actions/notify_e2e_failure/action.yml | 85 ------------------- .github/actions/notify_teams/action.yml | 3 - .../workflows/build-os-image-scheduled.yml | 1 - .github/workflows/e2e-test-daily.yml | 2 - .github/workflows/e2e-test-weekly.yml | 2 - .github/workflows/e2e-test.yml | 1 - .github/workflows/e2e-upgrade.yml | 1 - .github/workflows/e2e-windows.yml | 1 - 8 files changed, 96 deletions(-) diff --git a/.github/actions/notify_e2e_failure/action.yml b/.github/actions/notify_e2e_failure/action.yml index c9ab918af2..752f49a271 100644 --- a/.github/actions/notify_e2e_failure/action.yml +++ b/.github/actions/notify_e2e_failure/action.yml @@ -5,9 +5,6 @@ inputs: projectWriteToken: description: "Token to write to the project board" required: true - teamsWebhookUri: - description: "URI to send a message to the teams channel" - required: true test: description: "Test name" required: true @@ -77,85 +74,3 @@ runs: - name: Issue URL ${{ steps.gh_create_issue.outputs.issue-url }} shell: bash run: echo ${{ steps.gh_create_issue.outputs.issue-url }} - - - name: Create project card in case of failure - id: create-project-card - continue-on-error: true - shell: bash - env: - GHH_TOKEN: ${{ inputs.projectWriteToken }} - run: | - # TODO(katexochen): add job number when possible - jobURL="https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" - # TODO(msanft): Add Self-managed param once logcollection is fixed. - opensearchURL="https://search-e2e-logs-y46renozy42lcojbvrt3qq7csm.eu-central-1.es.amazonaws.com/_dashboards/app/discover#/?_g=(filters:!(),refreshInterval:(pause:!t,value:0),time:(from:now-7d,to:now))&_a=(columns:!(metadata.name,systemd.unit,kubernetes.pod_name,message),filters:!(('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',key:metadata.github.e2e-test-provider,negate:!f,params:(query:${{ inputs.provider }}),type:phrase),query:(match_phrase:(metadata.github.e2e-test-provider:${{ inputs.provider }}))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',key:metadata.github.run-id,negate:!f,params:(query:${{ github.run_id }}),type:phrase),query:(match_phrase:(metadata.github.run-id:${{ github.run_id }}))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',key:metadata.github.ref-stream.keyword,negate:!f,params:(query:'${{ inputs.refStream }}'),type:phrase),query:(match_phrase:(metadata.github.ref-stream.keyword:'${{ inputs.refStream }}'))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',key:metadata.github.kubernetes-version.keyword,negate:!f,params:(query:'${{ inputs.kubernetesVersion }}'),type:phrase),query:(match_phrase:(metadata.github.kubernetes-version.keyword:'${{ inputs.kubernetesVersion }}'))),('$state':(store:appState),meta:(alias:!n,disabled:!f,index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',key:metadata.github.e2e-test-payload,negate:!f,params:(query:'${{ inputs.test }}'),type:phrase),query:(match_phrase:(metadata.github.e2e-test-payload:'${{ inputs.test }}')))),index:'74517cf0-6442-11ed-acf1-47dda8fdfbbb',interval:auto,query:(language:kuery,query:''),sort:!())" - cat << EOF > header.md - - ## Metadata - - * [Job URL](${jobURL}) - * [OpenSearch URL](${opensearchURL// /%20}) - - EOF - - cat header.md .github/failure_project_template.md > body.md - cp .github/failure_project_metadata.json metadata.json - DATE=$(date '+%F %a %T %Z') yq -iP '.issueTitle = env(DATE)' metadata.json - yq -iP '.assignees += [ "${{ steps.pick-assignee.outputs.assignee }}" ]' metadata.json - yq -iP '.fields.cloudProvider = "${{ inputs.provider }}"' metadata.json - if [[ ${{ inputs.selfManagedInfra }} == 'true' ]]; then - yq -iP '.fields.test = "${{ inputs.test }} (Self-managed infrastructure)"' metadata.json - else - yq -iP '.fields.test = "${{ inputs.test }}"' metadata.json - fi - yq -iP '.fields.workflow = "${{ github.workflow }}"' metadata.json - if [[ -n "${{ inputs.kubernetesVersion }}" ]]; then - yq -iP '.fields.kubernetesVersion = "${{ inputs.kubernetesVersion }}"' metadata.json - fi - if [[ -n "${{ inputs.refStream }}" ]]; then - yq -iP '.fields.refStream = "${{ inputs.refStream }}"' metadata.json - fi - - cat metadata.json - - issueURL=$( - bazel run //bazel/ci:ghh -- create-project-issue \ - --body body.md \ - --metadata metadata.json \ - -v - ) - - echo "jobURL=${jobURL}" | tee -a "$GITHUB_OUTPUT" - echo "opensearchURL=${opensearchURL}" | tee -a "$GITHUB_OUTPUT" - echo "issueURL=${issueURL}" | tee -a "$GITHUB_OUTPUT" - - - name: Create notification fields - id: create-fields - continue-on-error: true - shell: bash - run: | - echo '[ { "title": "CloudProvider", "value": "${{ inputs.provider }}" }, { "title": "Test", "value": "${{ inputs.test }}" } ]' > facts.json - if [[ -n "${{ inputs.kubernetesVersion }}" ]]; then - yq -oj -iP '. += [ { "title": "KubernetesVersion", "value": "${{ inputs.kubernetesVersion }}" } ]' facts.json - fi - if [[ -n "${{ inputs.refStream }}" ]]; then - yq -oj -iP '. += [ { "title": "RefStream", "value": "${{ inputs.refStream }}" } ]' facts.json - fi - - buttons='[ - { - "type": "Action.OpenUrl", - "title": "Project board issue", - "url": "${{ steps.create-project-card.outputs.issueURL }}", - "style": "positive" - }, - { - "type": "Action.OpenUrl", - "title": "OpenSearch logs", - "url": "${{ steps.create-project-card.outputs.opensearchURL }}", - "style": "positive" - } - ]' - - echo "additionalFields=$(cat facts.json)" | tee -a "$GITHUB_OUTPUT" - echo "additionalButtons=$buttons" | tee -a "$GITHUB_OUTPUT" diff --git a/.github/actions/notify_teams/action.yml b/.github/actions/notify_teams/action.yml index 956a3a889e..3e4766417d 100644 --- a/.github/actions/notify_teams/action.yml +++ b/.github/actions/notify_teams/action.yml @@ -2,9 +2,6 @@ name: notify teams description: "Post a message to Teams" inputs: - teamsWebhookURI: - description: "URI to send a message to the Teams channel" - required: true title: description: "Title of the Teams notification" required: true diff --git a/.github/workflows/build-os-image-scheduled.yml b/.github/workflows/build-os-image-scheduled.yml index debd188aa7..e10a532da6 100644 --- a/.github/workflows/build-os-image-scheduled.yml +++ b/.github/workflows/build-os-image-scheduled.yml @@ -134,6 +134,5 @@ jobs: continue-on-error: true uses: ./.github/actions/notify_teams with: - teamsWebhookURI: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} title: "Constellation image build failed" assignee: ${{ steps.pick-assignee.outputs.assignee }} diff --git a/.github/workflows/e2e-test-daily.yml b/.github/workflows/e2e-test-daily.yml index 0d68d78260..fd87844b07 100644 --- a/.github/workflows/e2e-test-daily.yml +++ b/.github/workflows/e2e-test-daily.yml @@ -119,7 +119,6 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} refStream: ${{ matrix.refStream }} test: ${{ matrix.test }} kubernetesVersion: ${{ matrix.kubernetesVersion }} @@ -167,6 +166,5 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} test: "MiniConstellation" provider: "QEMU" diff --git a/.github/workflows/e2e-test-weekly.yml b/.github/workflows/e2e-test-weekly.yml index 9cdbb29ef9..13fc4b1c30 100644 --- a/.github/workflows/e2e-test-weekly.yml +++ b/.github/workflows/e2e-test-weekly.yml @@ -287,7 +287,6 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} refStream: ${{ matrix.refStream }} test: ${{ matrix.test }} kubernetesVersion: ${{ matrix.kubernetes-version }} @@ -356,7 +355,6 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} test: "MiniConstellation" provider: "QEMU" diff --git a/.github/workflows/e2e-test.yml b/.github/workflows/e2e-test.yml index 81f6a75b3f..dda1dc77ca 100644 --- a/.github/workflows/e2e-test.yml +++ b/.github/workflows/e2e-test.yml @@ -270,7 +270,6 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} refStream: "test/debug" test: "intentional" kubernetesVersion: "v1.99.99" diff --git a/.github/workflows/e2e-upgrade.yml b/.github/workflows/e2e-upgrade.yml index 44a1c64d56..8e2278ecac 100644 --- a/.github/workflows/e2e-upgrade.yml +++ b/.github/workflows/e2e-upgrade.yml @@ -310,6 +310,5 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} test: "upgrade" provider: ${{ inputs.cloudProvider }} diff --git a/.github/workflows/e2e-windows.yml b/.github/workflows/e2e-windows.yml index 4b25ee10fa..5cd322c5ec 100644 --- a/.github/workflows/e2e-windows.yml +++ b/.github/workflows/e2e-windows.yml @@ -174,6 +174,5 @@ jobs: uses: ./.github/actions/notify_e2e_failure with: projectWriteToken: ${{ secrets.PROJECT_WRITE_TOKEN }} - teamsWebhookUri: ${{ secrets.MS_TEAMS_WEBHOOK_URI }} test: Windows E2E Test provider: Azure