Skip to content

Commit

Permalink
Merge branch 'master' into fix/card-cta-text-wrap
Browse files Browse the repository at this point in the history
  • Loading branch information
kodiakhq[bot] authored Nov 8, 2021
2 parents fc915d4 + cccde8f commit 15d0a52
Show file tree
Hide file tree
Showing 15 changed files with 57 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/automerge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
branches:
- 'release/*'

concurrency:
group: automerge-${{ github.ref }}
cancel-in-progress: true

jobs:
automerge:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/ci-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: ci-check

on: [push, pull_request]

concurrency:
group: ci-check-${{ github.ref }}
cancel-in-progress: true

jobs:
check-packages:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ on:
schedule:
- cron: '35 16 * * 1'

concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true

jobs:
analyze:
name: Analyze
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/dependabot-yarn-mirror.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: dependabot-yarn-mirror

on: [pull_request]

concurrency:
group: dependabot-${{ github.ref }}
cancel-in-progress: true

jobs:
update-offline-mirror:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master

concurrency:
group: deploy-canary-${{ github.ref }}
cancel-in-progress: true

jobs:
react:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/deploy-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- release/*

concurrency:
group: deploy-staging-${{ github.ref }}
cancel-in-progress: true

jobs:
react:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ name: e2e-tests

on: [push, pull_request]

concurrency:
group: e2e-tests-${{ github.ref }}
cancel-in-progress: true

jobs:
storybook-web-components:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/percy-update-base-wc-e2e-codesandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

jobs:
web-components:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/percy-update-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- master
- release/*

concurrency:
group: percy-update-base-${{ github.ref }}
cancel-in-progress: true

jobs:
react-storybook:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
branches:
- master

concurrency:
group: publish-canary-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ on:
schedule:
- cron: '0 1 * * 1-5'

concurrency:
group: publish-nightly-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ on:
tags:
- 'v*'

concurrency:
group: publish-staging-${{ github.ref }}
cancel-in-progress: true

jobs:
publish:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/release-preflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ on:
- master
- release/*

concurrency:
group: release-preflight-${{ github.ref }}
cancel-in-progress: true

jobs:
react:
runs-on: ubuntu-20.04
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/snapshot-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ on:
- release/*
- chore/carbon-upgrade-*

concurrency:
group: snapshot-update-${{ github.ref }}
cancel-in-progress: true

jobs:
react:
runs-on: ubuntu-20.04
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ $button-transition: background-color 110ms, border-color 110ms, color 110ms;
position: absolute;
top: 0;
right: 0;
display: flex;

.#{$prefix}--header__search--search,
.#{$prefix}--header__search--close {
Expand Down

0 comments on commit 15d0a52

Please sign in to comment.