diff --git a/.github/workflows/build_airflow.yaml b/.github/workflows/build_airflow.yaml index 17939cd72..95ed84077 100644 --- a/.github/workflows/build_airflow.yaml +++ b/.github/workflows/build_airflow.yaml @@ -1,5 +1,7 @@ --- name: Build Airflow +run-name: | + Build Airflow (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: airflow @@ -124,7 +126,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -150,7 +152,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_druid.yaml b/.github/workflows/build_druid.yaml index cc042fc2f..5ab5002ef 100644 --- a/.github/workflows/build_druid.yaml +++ b/.github/workflows/build_druid.yaml @@ -1,5 +1,7 @@ --- name: Build Druid +run-name: | + Build Druid (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: druid @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_hadoop.yaml b/.github/workflows/build_hadoop.yaml index 54084cfbe..cd1b67d1f 100644 --- a/.github/workflows/build_hadoop.yaml +++ b/.github/workflows/build_hadoop.yaml @@ -1,5 +1,7 @@ --- name: Build Hadoop +run-name: | + Build Hadoop (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: hadoop @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_hbase.yaml b/.github/workflows/build_hbase.yaml index 348c0a0ca..ed8c56b9a 100644 --- a/.github/workflows/build_hbase.yaml +++ b/.github/workflows/build_hbase.yaml @@ -1,5 +1,7 @@ --- name: Build HBase +run-name: | + Build HBase (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: hbase @@ -127,7 +129,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -153,7 +155,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_hello-world.yaml b/.github/workflows/build_hello-world.yaml index 306252396..5f266f934 100644 --- a/.github/workflows/build_hello-world.yaml +++ b/.github/workflows/build_hello-world.yaml @@ -1,5 +1,7 @@ --- name: Build Hello-World +run-name: | + Build Hello-World (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: hello-world @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_hive.yaml b/.github/workflows/build_hive.yaml index 191bd3096..37ccc6e1e 100644 --- a/.github/workflows/build_hive.yaml +++ b/.github/workflows/build_hive.yaml @@ -1,5 +1,7 @@ --- name: Build Hive +run-name: | + Build Hive (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: hive @@ -127,7 +129,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -153,7 +155,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_java-base.yaml b/.github/workflows/build_java-base.yaml index 9ee23f00a..1fcde4032 100644 --- a/.github/workflows/build_java-base.yaml +++ b/.github/workflows/build_java-base.yaml @@ -1,5 +1,7 @@ --- name: Build Java Base +run-name: | + Build Java Base (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: java-base @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_java-devel.yaml b/.github/workflows/build_java-devel.yaml index 19092c3c0..3383073ed 100644 --- a/.github/workflows/build_java-devel.yaml +++ b/.github/workflows/build_java-devel.yaml @@ -1,5 +1,7 @@ --- name: Build Java Development +run-name: | + Build Java Development (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: java-devel @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_kafka-testing-tools.yaml b/.github/workflows/build_kafka-testing-tools.yaml index 43231a0fe..532deb5f8 100644 --- a/.github/workflows/build_kafka-testing-tools.yaml +++ b/.github/workflows/build_kafka-testing-tools.yaml @@ -1,5 +1,7 @@ --- name: Build Kafka Testing Tools +run-name: | + Build Kafka Testing Tools (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: kafka-testing-tools @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_kafka.yaml b/.github/workflows/build_kafka.yaml index 580e164a1..715a85825 100644 --- a/.github/workflows/build_kafka.yaml +++ b/.github/workflows/build_kafka.yaml @@ -1,5 +1,7 @@ --- name: Build Kafka +run-name: | + Build Kafka (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: kafka @@ -128,7 +130,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -154,7 +156,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_kcat.yaml b/.github/workflows/build_kcat.yaml index c9a5522c7..93af6451c 100644 --- a/.github/workflows/build_kcat.yaml +++ b/.github/workflows/build_kcat.yaml @@ -1,5 +1,7 @@ --- name: Build kcat +run-name: | + Build kcat (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: kcat @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_krb5.yaml b/.github/workflows/build_krb5.yaml index 6f7fdcff2..825b8266e 100644 --- a/.github/workflows/build_krb5.yaml +++ b/.github/workflows/build_krb5.yaml @@ -1,5 +1,7 @@ --- name: Build Krb5 +run-name: | + Build Krb5 (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: krb5 @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_nifi.yaml b/.github/workflows/build_nifi.yaml index 22ec1f3c6..e662e71fb 100644 --- a/.github/workflows/build_nifi.yaml +++ b/.github/workflows/build_nifi.yaml @@ -1,5 +1,7 @@ --- name: Build NiFi +run-name: | + Build NiFi (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: nifi @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_omid.yaml b/.github/workflows/build_omid.yaml index 4798611b6..10af5364f 100644 --- a/.github/workflows/build_omid.yaml +++ b/.github/workflows/build_omid.yaml @@ -1,5 +1,7 @@ --- name: Build Omid +run-name: | + Build Omid (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: omid @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_opa.yaml b/.github/workflows/build_opa.yaml index 9c33be3df..17fa77359 100644 --- a/.github/workflows/build_opa.yaml +++ b/.github/workflows/build_opa.yaml @@ -1,5 +1,7 @@ --- name: Build OPA +run-name: | + Build OPA (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: opa @@ -124,7 +126,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -150,7 +152,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_spark-k8s.yaml b/.github/workflows/build_spark-k8s.yaml index a82d244f8..67c3a118b 100644 --- a/.github/workflows/build_spark-k8s.yaml +++ b/.github/workflows/build_spark-k8s.yaml @@ -1,5 +1,7 @@ --- name: Build Spark K8s +run-name: | + Build Spark K8s (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: spark-k8s @@ -127,7 +129,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -153,7 +155,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_stackable-base.yaml b/.github/workflows/build_stackable-base.yaml index a5447ad9a..faf581aaa 100644 --- a/.github/workflows/build_stackable-base.yaml +++ b/.github/workflows/build_stackable-base.yaml @@ -1,5 +1,7 @@ --- name: Build Stackable Base +run-name: | + Build Stackable Base (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: stackable-base @@ -123,7 +125,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -149,7 +151,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_superset.yaml b/.github/workflows/build_superset.yaml index 98709d1c6..fde65f335 100644 --- a/.github/workflows/build_superset.yaml +++ b/.github/workflows/build_superset.yaml @@ -1,5 +1,7 @@ --- name: Build Superset +run-name: | + Build Superset (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: superset @@ -124,7 +126,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -150,7 +152,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_testing-tools.yaml b/.github/workflows/build_testing-tools.yaml index c6c4dc9d1..041b86801 100644 --- a/.github/workflows/build_testing-tools.yaml +++ b/.github/workflows/build_testing-tools.yaml @@ -1,5 +1,7 @@ --- name: Build Testing Tools +run-name: | + Build Testing Tools (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: testing-tools @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_tools.yaml b/.github/workflows/build_tools.yaml index 7fa11189f..77626f116 100644 --- a/.github/workflows/build_tools.yaml +++ b/.github/workflows/build_tools.yaml @@ -1,5 +1,7 @@ --- name: Build Tools +run-name: | + Build Tools (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: tools @@ -123,7 +125,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -149,7 +151,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_trino-cli.yaml b/.github/workflows/build_trino-cli.yaml index 2250c96dd..7c104573f 100644 --- a/.github/workflows/build_trino-cli.yaml +++ b/.github/workflows/build_trino-cli.yaml @@ -1,5 +1,7 @@ --- name: Build Trino CLI +run-name: | + Build Trino CLI (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: trino-cli @@ -125,7 +127,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -151,7 +153,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_trino.yaml b/.github/workflows/build_trino.yaml index 00103b90e..6756eb3b5 100644 --- a/.github/workflows/build_trino.yaml +++ b/.github/workflows/build_trino.yaml @@ -1,5 +1,7 @@ --- name: Build Trino +run-name: | + Build Trino (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: trino @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_vector.yaml b/.github/workflows/build_vector.yaml index 9abc3792a..d68b7e93c 100644 --- a/.github/workflows/build_vector.yaml +++ b/.github/workflows/build_vector.yaml @@ -1,5 +1,7 @@ --- name: Build Vector +run-name: | + Build Vector (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: vector @@ -122,7 +124,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -148,7 +150,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/build_zookeeper.yaml b/.github/workflows/build_zookeeper.yaml index 2ea9cea9f..3597bbea0 100644 --- a/.github/workflows/build_zookeeper.yaml +++ b/.github/workflows/build_zookeeper.yaml @@ -1,5 +1,7 @@ --- name: Build ZooKeeper +run-name: | + Build ZooKeeper (attempt #${{ github.run_attempt }}) env: PRODUCT_NAME: zookeeper @@ -126,7 +128,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -152,7 +154,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/mirror.yaml b/.github/workflows/mirror.yaml index 3a7d32c7b..cf751249f 100644 --- a/.github/workflows/mirror.yaml +++ b/.github/workflows/mirror.yaml @@ -1,5 +1,8 @@ --- name: Mirror Container Image +run-name: | + Mirror Container Image (attempt #${{ github.run_attempt }}) + on: workflow_dispatch: inputs: @@ -113,7 +116,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -134,7 +137,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/preflight.yaml b/.github/workflows/preflight.yaml index 13784cc55..4fdf7c14d 100644 --- a/.github/workflows/preflight.yaml +++ b/.github/workflows/preflight.yaml @@ -15,6 +15,9 @@ # --- name: Preflight checks +run-name: | + Preflight checks (attempt #${{ github.run_attempt }}) + on: workflow_dispatch: inputs: @@ -108,7 +111,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -124,7 +127,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] } diff --git a/.github/workflows/ubi-rust-builder.yml b/.github/workflows/ubi-rust-builder.yml index 311c3f900..f02b5f165 100644 --- a/.github/workflows/ubi-rust-builder.yml +++ b/.github/workflows/ubi-rust-builder.yml @@ -1,5 +1,7 @@ --- name: Build UBI Rust Builders +run-name: | + Build UBI Rust Builders (attempt #${{ github.run_attempt }}) on: push: @@ -90,7 +92,7 @@ jobs: channel-id: "C07UG6JH44F" # notifications-container-images payload: | { - "text": "*${{ github.workflow }}* failed", + "text": "*${{ github.workflow }}* failed (attempt ${{ github.run_attempt }})", "attachments": [ { "pretext": "See the details below for a summary of which job(s) failed.", @@ -111,7 +113,7 @@ jobs: { "type": "button", "text": "Go to workflow run", - "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}" + "url": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}/attempts/${{ github.run_attempt }}" } ] }