-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(merge): merge feat/carbon-for-ibm-dotcom-v2 into main
- Loading branch information
Showing
4,373 changed files
with
106,075 additions
and
421,213 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: automerge-content-updates | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
concurrency: | ||
group: automerge-content-updates-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
automerge-content-updates: | ||
if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' | ||
runs-on: ubuntu-20.04 | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Merge to fix/content-updates | ||
uses: devmasx/[email protected] | ||
with: | ||
type: now | ||
target_branch: 'fix/content-updates' | ||
env: | ||
GITHUB_TOKEN: ${{secrets.MERGE_ACTION}} | ||
- uses: act10ns/slack@v2 | ||
with: | ||
status: ${{ job.status }} | ||
if: failure() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: automerge-mastheadv2 | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
concurrency: | ||
group: automerge-mastheadv2-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
automerge-mastheadv2: | ||
if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' | ||
runs-on: ubuntu-20.04 | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Merge to feat/masthead-v2-dev | ||
uses: devmasx/[email protected] | ||
with: | ||
type: now | ||
target_branch: 'feat/masthead-v2-dev' | ||
env: | ||
GITHUB_TOKEN: ${{secrets.MERGE_ACTION}} | ||
- uses: act10ns/slack@v2 | ||
with: | ||
status: ${{ job.status }} | ||
if: failure() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: automerge-storybook-controls | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
concurrency: | ||
group: automerge-storybook-controls-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
automerge-storybook-controls: | ||
if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' | ||
runs-on: ubuntu-20.04 | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Merge to feat/storybook-controls | ||
uses: devmasx/[email protected] | ||
with: | ||
type: now | ||
target_branch: 'feat/storybook-controls' | ||
env: | ||
GITHUB_TOKEN: ${{secrets.MERGE_ACTION}} | ||
- uses: act10ns/slack@v2 | ||
with: | ||
status: ${{ job.status }} | ||
if: failure() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: check-cdn (Checks the CDN packages nightly) | ||
|
||
on: | ||
schedule: | ||
- cron: '0 1 * * 1-5' | ||
|
||
concurrency: | ||
group: check-cdn-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
cypress: | ||
if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' | ||
runs-on: ubuntu-20.04 | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
cache: 'yarn' | ||
- name: Install dependencies | ||
run: yarn install --immutable --immutable-cache | ||
- name: Run Cypress tests over the CDN packages | ||
run: yarn test:cdn-build:test | ||
working-directory: packages/web-components | ||
- uses: act10ns/slack@v2 | ||
with: | ||
status: ${{ job.status }} | ||
if: failure() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
name: dependabot-yarn-mirror | ||
|
||
on: | ||
push: | ||
branches: [ dependabot/**/* ] | ||
pull_request: | ||
branches: [ dependabot/**/* ] | ||
|
||
concurrency: | ||
group: dependabot-yarn-mirror-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
yarn-mirror: | ||
if: github.repository == 'carbon-design-system/carbon-for-ibm-dotcom' | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
token: ${{secrets.MERGE_ACTION || github.token}} | ||
- name: Use Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
cache: 'yarn' | ||
- name: Get branch name | ||
shell: bash | ||
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})" | ||
id: get_branch | ||
- name: Install dependencies | ||
run: yarn install --no-immutable --immutable-cache | ||
- name: Push changes | ||
run: | | ||
if [ -z "$(git status --porcelain)" ]; then | ||
echo "Mirror is clean, exiting..." | ||
else | ||
git config --global user.email ${{ secrets.BOT_EMAIL }} | ||
git config --global user.name ${{ secrets.BOT_NAME }} | ||
git add -A | ||
git commit -m "chore(yarn): update yarn offline mirror" | ||
git push origin ${{ steps.get_branch.outputs.branch }} | ||
fi |
Oops, something went wrong.