Update support window diagram #11
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: Update support window diagram | |
on: | |
# When our dependencies change | |
push: | |
paths: | |
- .github/workflows/support-window.yml | |
- package.json | |
- scripts/support-window.js | |
- scripts/jsconfig.json | |
# Manually, when TypeScript is released | |
# https://docs.github.com/en/actions/managing-workflow-runs/manually-running-a-workflow | |
workflow_dispatch: | |
schedule: | |
# Weekly at 16:00 UTC on Monday | |
- cron: '0 16 * * 1' | |
permissions: | |
contents: read | |
jobs: | |
support-window: | |
permissions: | |
contents: write # for Git to git push | |
if: github.repository == 'DefinitelyTyped/DefinitelyTyped' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
run_install: | | |
- args: [--filter, ., --filter, '{./scripts}...'] | |
- name: Fetch TypeScript versions and release dates from npm | |
run: | | |
npm view --json typescript time | | |
jq ' | |
to_entries | |
# Earliest non-pre-release <major>.<minor> | |
| map( | |
(.key |= capture("^(?<version>[0-9]+\\.[0-9]+)\\.[0-9]+$").version) | |
| select(.key) | |
) | |
| unique_by(.key) | |
| from_entries | |
' > docs/support-window.json | |
- name: Make SVG diagram | |
run: node --experimental-json-modules scripts/support-window > docs/support-window.svg | |
- uses: stefanzweifel/git-auto-commit-action@v5.0.0 | |
with: | |
commit_author: 'TypeScript Bot <typescriptbot@microsoft.com>' | |
commit_message: '🤖 Update support window' | |
commit_user_email: 'typescriptbot@microsoft.com' | |
commit_user_name: 'TypeScript Bot' |