From a99255e01e512457ccab0b3c17e313037d6462b8 Mon Sep 17 00:00:00 2001 From: "sefat.anam" Date: Fri, 4 Oct 2024 00:13:46 +0600 Subject: [PATCH] feat: update angular version via gh action --- .github/workflows/ng-update.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 .github/workflows/ng-update.yml diff --git a/.github/workflows/ng-update.yml b/.github/workflows/ng-update.yml new file mode 100644 index 0000000..e70b539 --- /dev/null +++ b/.github/workflows/ng-update.yml @@ -0,0 +1,14 @@ +name: 'Update Angular Action' +on: # when the action should run. Can also be a CRON or in response to external events. see https://git.io/JeBz1 + schedule: + - cron: '30 5 5,20 * *' + +jobs: + ngxUptodate: + runs-on: ubuntu-latest + steps: + - name: Updating ng dependencies # the magic happens here ! + uses: fast-facts/ng-update@v1 + with: + base-branch: master + repo-token: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file