Skip to content

Commit

Permalink
add changeset workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bdbch committed Nov 17, 2024
1 parent 63f3302 commit d2c9bf9
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/changesets-mode.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Manage Changesets Mode

on:
push:
branches:
- main
- develop
- next

jobs:
manage-pre-mode:
runs-on: ubuntu-latest
steps:
# Checkout the repository
- uses: actions/checkout@v3

# Setup Node.js
- uses: actions/setup-node@v3

# Install dependencies
- run: npm install

# Run the script
- name: Run pre mode script
id: pre-mode
run: |
BRANCH=$(echo "${{ github.ref }}" | sed 's|refs/heads/||')
./scripts/manage-pre-mode.sh "$BRANCH"
# Commit if required
- name: Commit changes
if: env.needs_commit == 'true'
run: |
git config user.name "GitHub Actions"
git config user.email "[email protected]"
git add .changeset/pre.json
git commit -m "Update Changesets pre-release mode"
git push

0 comments on commit d2c9bf9

Please sign in to comment.