From 64a5b10d1f263d6e3ea8c0210c06c7306c03fee9 Mon Sep 17 00:00:00 2001 From: Rustie Lin Date: Wed, 9 Oct 2024 16:45:46 -0700 Subject: [PATCH] [forge] add a message to the summary on how to cancel a job --- .github/workflows/forge-stable.yaml | 1 + .github/workflows/forge-unstable.yaml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/forge-stable.yaml b/.github/workflows/forge-stable.yaml index 897b752d50948..73947c9936a33 100644 --- a/.github/workflows/forge-stable.yaml +++ b/.github/workflows/forge-stable.yaml @@ -120,6 +120,7 @@ jobs: echo "BRANCH: [${BRANCH}](https://github.com/${{ github.repository }}/tree/${BRANCH})" >> $GITHUB_STEP_SUMMARY fi echo "IMAGE_TAG: [${IMAGE_TAG}](https://github.com/${{ github.repository }}/commit/${IMAGE_TAG})" >> $GITHUB_STEP_SUMMARY + echo "To cancel this job, do `pnpm infra ci cancel-workflow ${{ github.run_id }}` from internal-ops" >> $GITHUB_STEP_SUMMARY ### Real-world-network tests. # Run forge framework upgradability test. This is a PR required job. diff --git a/.github/workflows/forge-unstable.yaml b/.github/workflows/forge-unstable.yaml index d7616db23141f..b36059c47ee34 100644 --- a/.github/workflows/forge-unstable.yaml +++ b/.github/workflows/forge-unstable.yaml @@ -114,6 +114,7 @@ jobs: echo "BRANCH: [${BRANCH}](https://github.com/${{ github.repository }}/tree/${BRANCH})" >> $GITHUB_STEP_SUMMARY fi echo "IMAGE_TAG: [${IMAGE_TAG}](https://github.com/${{ github.repository }}/commit/${IMAGE_TAG})" >> $GITHUB_STEP_SUMMARY + echo "To cancel this job, do `pnpm infra ci cancel-workflow ${{ github.run_id }}` from internal-ops" >> $GITHUB_STEP_SUMMARY # Test definitions start below # To add a new Forge test, add a new job definition below. Copy all fields and change only the: