Skip to content

Commit

Permalink
ci: add bump workspace action (#31)
Browse files Browse the repository at this point in the history
adjsky authored Oct 31, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent 9e31d1e commit f31ae26
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/bump-workspace.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Bump workspace

on: workflow_dispatch

jobs:
bump:
runs-on: ubuntu-latest
timeout-minutes: 15

steps:
- name: Checkout repo
uses: actions/checkout@v3

- uses: denoland/setup-deno@v2
with:
deno-version: v2.x

- name: Bump
run: |
git fetch --unshallow origin
deno run -A jsr:@deno/bump-workspaces@0.1.21/cli
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GIT_USER_NAME: adjsky
GIT_USER_EMAIL: igorlfmartins@mail.ru

0 comments on commit f31ae26

Please sign in to comment.