Skip to content

feat: add types to CheckboxGroup component (#16643) #6

feat: add types to CheckboxGroup component (#16643)

feat: add types to CheckboxGroup component (#16643) #6

name: Sync generated files
on:
push:
branches:
- main
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Use Node.js 20.x
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 #v4.0.2
with:
node-version: '20.x'
- name: Install dependencies
run: yarn install --immutable --immutable-cache
- name: Build project
run: yarn build
- name: Sync project dependency files
run: yarn sync
- name: Push generated artifacts to GitHub
env:
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
run: |
if [ -n "$(git status --porcelain)" ]; then
echo "Our git status is not clean. Checking in the following files:";
echo "$(git status --porcelain)";
git config --global credential.helper 'cache --timeout=120'
git config --global user.email "[email protected]"
git config --global user.name "carbon-bot"
git remote set-url origin "https://x-access-token:[email protected]/carbon-design-system/carbon.git"
git checkout main
git add -A
git commit -m "chore(project): sync generated files"
git push
fi