From fc01abd70807c0d4250a11197b78996afcae4174 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Estev=C3=A3o=20Soares=20dos=20Santos?= Date: Thu, 31 Mar 2022 08:22:18 +0100 Subject: [PATCH] chore: try fixing github broswerstack action these lines are for testing purposes test test test --- .github/workflows/browserstack.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 7b0fb73..fbed2da 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -6,14 +6,14 @@ on: pull_request: branches: [ master, develop ] -env: - COMMIT_MSG: '$(printf "%s" "${{ github.event.head_commit.message }}" | head -n 1)' # Only the first line of commit msg - jobs: ubuntu-job: name: 'BrowserStack Test on Ubuntu' runs-on: ubuntu-latest steps: + - name: set up env vars + # Only the first line of commit msg + run: echo "COMMIT_MSG=$(printf "%s" "${{ github.event.head_commit.message }}" | head -n 1)" >> $GITHUB_ENV - name: '📦 Checkout the repository' uses: actions/checkout@v2