We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e880c76 commit bcac7e2Copy full SHA for bcac7e2
.github/workflows/release.yml
@@ -4,6 +4,11 @@ on:
4
push:
5
branches:
6
- main
7
+ paths:
8
+ - 'packages/cli/**'
9
+ - '.changeset/**'
10
+ - 'package.json'
11
+ - 'bun.lock'
12
13
jobs:
14
release:
@@ -21,6 +26,11 @@ jobs:
21
26
- name: Install Dependencies
22
27
run: bun install
23
28
29
+ - name: Configure Git
30
+ run: |
31
+ git config --global user.name 'Aman Varshney'
32
+ git config --global user.email 'amanvarshney.work@gmail.com'
33
+
24
34
- name: Create Release Pull Request or Publish
25
35
uses: changesets/action@v1
36
with:
0 commit comments