Skip to content

Commit

Permalink
Revert "CI: limit the on push triggers (#35574)" (#37657)
Browse files Browse the repository at this point in the history
This reverts commit f0ae5cc.
  • Loading branch information
XhmikosR authored Dec 16, 2022
1 parent f0ae5cc commit 71e2ace
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 20 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/browserstack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,6 @@ name: BrowserStack

on:
push:
branches:
- main
pull_request:
branches:
- main
workflow_dispatch:

env:
Expand All @@ -19,7 +14,7 @@ permissions:
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]'))
timeout-minutes: 30

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/bundlewatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Bundlewatch

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cspell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: cspell

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/css.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: CSS

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Docs

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: JS Tests

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Lint

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/node-sass.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: CSS (node-sass)

on:
push:
branches:
- main
branches-ignore:
- "dependabot/**"
pull_request:
workflow_dispatch:

Expand Down

0 comments on commit 71e2ace

Please sign in to comment.