Skip to content

Commit

Permalink
Merge pull request #7 from design-sparx/ft/changeset
Browse files Browse the repository at this point in the history
feat:
  • Loading branch information
kelvink96 authored Sep 26, 2023
2 parents a68f6c6 + ed0f440 commit a3df654
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/loud-lemons-develop.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"antd-multi-dashboard": minor
---

Added automation to changeset on every PR via github actions
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Release

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 16
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install Dependencies
run: yarn

- name: Create Release Pull Request
uses: changesets/action@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a3df654

Please sign in to comment.