Unverified Commit eb91c2ec authored by XhmikosR's avatar XhmikosR Committed by GitHub
Browse files

CI: allow skipping BrowserStack (#31878)

This basically brings back the previous behavior we had on Travis CI, where if the commit message included `[ci skip]`, BrowserStack tests didn't run.

Additionally, this allows skipping BrowserStack if the commit message contains `[skip ci]` too.
parent 6c1df1b7
No related merge requests found
Showing with 1 addition and 1 deletion
+1 -1
......@@ -7,7 +7,7 @@ env:
jobs:
browserstack:
runs-on: ubuntu-latest
if: github.repository == 'twbs/bootstrap'
if: github.repository == 'twbs/bootstrap' && (!contains(github.event.commits[0].message, '[ci skip]') && !contains(github.event.commits[0].message, '[skip ci]'))
steps:
- name: Clone repository
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment