Update Angular #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Update Angular" | |
on: # when the action should run. Can also be a CRON or in response to external events. see https://git.io/JeBz1 | |
schedule: | |
- cron: '0 5 1 * *' | |
workflow_dispatch: | |
jobs: | |
ngxUptodate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Updating ng dependencies # the magic happens here ! | |
uses: fast-facts/[email protected] | |
with: | |
base-branch: main | |
project-path: ./client/ | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
pr-title: Update Angular Dependencies | |
pr-branch-prefix: ng-update- |