diff options
| author | XhmikosR <[email protected]> | 2023-03-22 09:03:51 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-03-22 09:03:51 +0200 |
| commit | c2671ecc2dc3baa904d79bb0b3da31be2f3ab85b (patch) | |
| tree | 68fdc50f2b8d54b099e65e5287a62add87e6777d /.github/workflows | |
| parent | 7d0380520570b9ccc911119a025393e2e624115b (diff) | |
| download | bootstrap-c2671ecc2dc3baa904d79bb0b3da31be2f3ab85b.tar.xz bootstrap-c2671ecc2dc3baa904d79bb0b3da31be2f3ab85b.zip | |
CI: limit the on push triggers (#38291)
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/browserstack.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/bundlewatch.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/cspell.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/css.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/docs.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/js.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/lint.yml | 4 | ||||
| -rw-r--r-- | .github/workflows/node-sass.yml | 4 |
8 files changed, 17 insertions, 15 deletions
diff --git a/.github/workflows/browserstack.yml b/.github/workflows/browserstack.yml index 9a2fc91e5..f2a3d87a8 100644 --- a/.github/workflows/browserstack.yml +++ b/.github/workflows/browserstack.yml @@ -2,6 +2,8 @@ name: BrowserStack on: push: + branches: + - main workflow_dispatch: env: @@ -14,7 +16,7 @@ permissions: 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: github.repository == 'twbs/bootstrap' timeout-minutes: 30 steps: diff --git a/.github/workflows/bundlewatch.yml b/.github/workflows/bundlewatch.yml index 2add86c49..c02a37ed9 100644 --- a/.github/workflows/bundlewatch.yml +++ b/.github/workflows/bundlewatch.yml @@ -2,8 +2,8 @@ name: Bundlewatch on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/cspell.yml b/.github/workflows/cspell.yml index 1d946981c..11788e3cc 100644 --- a/.github/workflows/cspell.yml +++ b/.github/workflows/cspell.yml @@ -2,8 +2,8 @@ name: cspell on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/css.yml b/.github/workflows/css.yml index f8da71b31..66112a96c 100644 --- a/.github/workflows/css.yml +++ b/.github/workflows/css.yml @@ -2,8 +2,8 @@ name: CSS on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index bdeae6043..2a684f618 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -2,8 +2,8 @@ name: Docs on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/js.yml b/.github/workflows/js.yml index d24cff976..805b1b7b1 100644 --- a/.github/workflows/js.yml +++ b/.github/workflows/js.yml @@ -2,8 +2,8 @@ name: JS Tests on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 51ee18999..fd62b418b 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -2,8 +2,8 @@ name: Lint on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: diff --git a/.github/workflows/node-sass.yml b/.github/workflows/node-sass.yml index dc687ca46..fb4d4944c 100644 --- a/.github/workflows/node-sass.yml +++ b/.github/workflows/node-sass.yml @@ -2,8 +2,8 @@ name: CSS (node-sass) on: push: - branches-ignore: - - "dependabot/**" + branches: + - main pull_request: workflow_dispatch: |
