We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
ng-update
1 parent 76b98ec commit 958e40eCopy full SHA for 958e40e
.github/workflows/ng-update.yml
@@ -0,0 +1,18 @@
1
+name: "Update Angular"
2
+on: # when the action should run. Can also be a CRON or in response to external events. see https://git.io/JeBz1
3
+ schedule:
4
+ - cron: '0 5 1 * *'
5
+ workflow_dispatch:
6
+
7
+jobs:
8
+ ngxUptodate:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Updating ng dependencies # the magic happens here !
12
+ uses: fast-facts/[email protected]
13
+ with:
14
+ base-branch: main
15
+ project-path: ./client/
16
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
17
+ pr-title: Update Angular Dependencies
18
+ pr-branch-prefix: ng-update-
0 commit comments