diff --git a/.github/workflows/ng-update.yml b/.github/workflows/ng-update.yml new file mode 100644 index 0000000..30c5d80 --- /dev/null +++ b/.github/workflows/ng-update.yml @@ -0,0 +1,13 @@ +name: "Update Angular Action" +on: # when the action should run. Can also be a CRON or in response to external events. see https://git.io/JeBz1 + push + +jobs: + ngxUptodate: + runs-on: ubuntu-latest + steps: + - name: Updating ng dependencies # the magic happens here ! + uses: fast-facts/ng-update@v1 + with: + base-branch: main + repo-token: ${{ secrets.GITHUB_TOKEN }}