Skip to content

Angular Components Sync #918

Angular Components Sync

Angular Components Sync #918

name: Angular Components Sync
on:
schedule:
# * is a special character in YAML so you have to quote this string
- cron: '0 5 * * *'
workflow_dispatch:
permissions:
issues: write
jobs:
update-issue:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
- uses: ./.github/actions/yarn-install
- name: "Execute Angular Components Sync"
run: node --no-warnings=ExperimentalWarning --loader ts-node/esm/transpile-only scripts/angular-components-sync.mts
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}