Skip to content

Commit

Permalink
Update bump version workflow (#45)
Browse files Browse the repository at this point in the history
  • Loading branch information
academo authored Sep 7, 2022
1 parent b36f071 commit 36a9314
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/npm-bump-version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.GH_BOT_ACCESS_TOKEN }}

- name: Setup environment
uses: actions/setup-node@v3.1.1
Expand All @@ -39,6 +39,11 @@ jobs:
- name: Unit tests
run: yarn jest

- name: Setup Git
run: |
git config user.name 'grafanabot'
git config user.email 'bot@grafana.com'
- name: bump version
run: npm version ${{ github.event.inputs.version }}

Expand Down

0 comments on commit 36a9314

Please sign in to comment.