diff options
| author | XhmikosR <[email protected]> | 2020-10-29 19:26:15 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-10-29 19:26:15 +0200 |
| commit | e993ca76e0700450b6c3614cca2f6878ca0f787b (patch) | |
| tree | 3c325393961fb19e439305bc521b28859a974683 /.github/workflows/css.yml | |
| parent | 5076170d7611d766ae52d162f492fafa55f309ff (diff) | |
| download | bootstrap-e993ca76e0700450b6c3614cca2f6878ca0f787b.tar.xz bootstrap-e993ca76e0700450b6c3614cca2f6878ca0f787b.zip | |
CI: Skip dependabot PR branches. (#32006)
Also, reword Node.js setup step
Diffstat (limited to '.github/workflows/css.yml')
| -rw-r--r-- | .github/workflows/css.yml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/.github/workflows/css.yml b/.github/workflows/css.yml index 390bffc96..e16f90fa2 100644 --- a/.github/workflows/css.yml +++ b/.github/workflows/css.yml @@ -1,5 +1,11 @@ name: CSS -on: [push, pull_request] + +on: + push: + branches-ignore: + - "dependabot/**" + pull_request: + env: CI: true NODE: 12.x @@ -12,7 +18,7 @@ jobs: - name: Clone repository uses: actions/checkout@v2 - - name: Set Node.js version + - name: Set up Node.js uses: actions/setup-node@v1 with: node-version: "${{ env.NODE }}" |
