Skip to content

Commit

Permalink
Add GitHub Actions workflow for weekly version bump using Yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
vladimirvshivkov committed Dec 11, 2024
1 parent a41199e commit 74335e0
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/bump-versions.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Bump yarn versions

on:
schedule:
- cron: '@weekly'

jobs:
bump-versions:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- run: yarn install --immutable
- run: ./update.sh

0 comments on commit 74335e0

Please sign in to comment.