Skip to content

Commit 958e40e

Browse files
committed
Add ng-update workflow
This copies over the `ng-update` workflow file from the iteration template.
1 parent 76b98ec commit 958e40e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/ng-update.yml

+18
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)