Angular Components Sync #864
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} |