We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef60d35 commit a99255eCopy full SHA for a99255e
.github/workflows/ng-update.yml
@@ -0,0 +1,14 @@
1
+name: 'Update Angular Action'
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: '30 5 5,20 * *'
5
+
6
+jobs:
7
+ ngxUptodate:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Updating ng dependencies # the magic happens here !
11
+ uses: fast-facts/ng-update@v1
12
+ with:
13
+ base-branch: master
14
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments