Skip to content

Commit

Permalink
ci: add nx migration action (#135)
Browse files Browse the repository at this point in the history
  • Loading branch information
timonmasberg committed Apr 12, 2023
1 parent c70148e commit 2565ed3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/nx-migration-checker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Check for new NX version

on:
schedule:
- cron: "0 0 * * *" # every day at midnight

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: timonmasberg/nx-migration-gh-action@v1.0.0
with:
repoToken: ${{ secrets.GITHUB_TOKEN }}
commitMessage: 'chore(deps): migrate nx to $VERSION'
prTitle: 'chore(deps): migrate nx to $VERSION'

0 comments on commit 2565ed3

Please sign in to comment.