Skip to content

Commit

Permalink
Merge pull request #1163 from UMM-CSci-3601/add-ng-update-workflow
Browse files Browse the repository at this point in the history
Add `ng-update` workflow
  • Loading branch information
NicMcPhee authored Jan 29, 2024
2 parents da143e6 + 76d4da2 commit d0fa40c
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ng-update.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
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-

0 comments on commit d0fa40c

Please sign in to comment.