From 5e7fe6a362b0f452f9a4ef8a85f62105cd62d118 Mon Sep 17 00:00:00 2001 From: Radoslaw Krzemien Date: Wed, 15 Mar 2023 14:03:18 +0100 Subject: [PATCH] Add step names Added missing names to steps in the `lockDeploys.yml` workflow for test files pre-generation See: https://github.com/Expensify/App/issues/13604 --- .github/workflows/lockDeploys.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lockDeploys.yml b/.github/workflows/lockDeploys.yml index 38764561ed59..03948f5cb3fc 100644 --- a/.github/workflows/lockDeploys.yml +++ b/.github/workflows/lockDeploys.yml @@ -10,7 +10,8 @@ jobs: runs-on: macos-12 steps: # Version: 2.3.4 - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - name: Checkout + uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 with: ref: main fetch-depth: 0 @@ -29,7 +30,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} - - if: ${{ failure() }} + - name: Announce failed workflow + if: ${{ failure() }} uses: Expensify/App/.github/actions/composite/announceFailedWorkflowInSlack@main with: SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }}