From 2e06d2a1378100636c40ed899c8990597fbce47b Mon Sep 17 00:00:00 2001 From: Stephan Date: Tue, 21 Sep 2021 17:16:24 +0200 Subject: [PATCH] fix --- .github/workflows/build-pr.yml | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/.github/workflows/build-pr.yml b/.github/workflows/build-pr.yml index 5a5f277..b2e21b3 100644 --- a/.github/workflows/build-pr.yml +++ b/.github/workflows/build-pr.yml @@ -7,21 +7,17 @@ on: pull_request jobs: - # build and test the PR build-pr: - name: Build PR (...) - runs-on: linux-latest - - strategy: - fail-fast: false + name: Build PR ${{ github.event.pull_request.number }} + runs-on: ubuntu-latest steps: - name: Step 1 shell: bash - run: echo "step 1 of {{ github.event.pull_request.number }}" + run: echo "step 1 of ${{ github.event.pull_request.number }}" - name: Step 2 shell: bash - run: echo "step 2 of {{ github.event.pull_request.number }}" + run: echo "step 2 of ${{ github.event.pull_request.number }}"