From 7edd50e685d840cbcf851e6e54d3ffd62089115c Mon Sep 17 00:00:00 2001 From: ckunki Date: Wed, 22 May 2024 17:28:41 +0200 Subject: [PATCH] experiment 14 [run-slow-tests] --- .github/workflows/ci-pr.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci-pr.yml b/.github/workflows/ci-pr.yml index b4f388d..cacf9d3 100644 --- a/.github/workflows/ci-pr.yml +++ b/.github/workflows/ci-pr.yml @@ -15,9 +15,10 @@ jobs: with: fetch-depth: 0 - - name: Examine Commit Message in ci-pr + - id: examine + name: Examine Commit Message in ci-pr run: | - echo 5 >> "$GITHUB_OUTPUT" + echo A=5 >> "$GITHUB_OUTPUT" git status git log -1 --pretty=format:"%b" if ! (git log -1 --pretty=format:"%b" | grep "\[run-slow-tests\]"); then @@ -26,8 +27,8 @@ jobs: - name: Verify setting of env var in ci-pr run: | - echo "GITHUB_OUTPUT 1 = ${{ neegs.examine-commit-message-ci-pr.outputs.output1}} - echo "GITHUB_OUTPUT 2 = ${{ neegs.examine-commit-message-ci-pr.outputs.output2}} + echo "OUTPUT 1 = ${{ steps.examine.outputs.A }}" + echo "OUTPUT 2 = ${{ steps.examine.outputs.RUN_SLOW_TESTS }}" CI: uses: ./.github/workflows/ci.yml