diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 0a3426e80439..c03b78198d93 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -11,10 +11,17 @@ env: jobs: browserstack: runs-on: ubuntu-latest - if: github.repository == 'twbs/bootstrap' && (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')) + if: (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]')) timeout-minutes: 30 steps: + - name: Display var + run: | + echo "Base: ${{ github.event.pull_request.base.repo.full_name }}" + echo "Head: ${{ github.event.pull_request.head.repo.full_name }}" + echo "Repo: ${{ github.repository }}" + echo "Test: ${{ secrets.BROWSER_STACK_ACCESS_KEY }}" + - name: Clone repository uses: actions/checkout@v2