Skip to content

Commit a99255e

Browse files
author
sefat.anam
committed
feat: update angular version via gh action
1 parent ef60d35 commit a99255e

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ng-update.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)