-
Notifications
You must be signed in to change notification settings - Fork 12.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # src/compiler/checker.ts
- Loading branch information
Showing
4,173 changed files
with
321,751 additions
and
107,646 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,7 @@ ahejlsberg | |
amcasey | ||
jessetrinity | ||
minestarks | ||
uniqueiniquity | ||
armanio123 | ||
gabritto | ||
jakebailey | ||
DanielRosenwasser |
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Ensures that repos which are related to TypeScript but may not have regular commits | ||
# have their GitHub Actions scheduled jobs still active due to the 6 week timeout | ||
# on OSS repos. This has already triggered a few times with microsoft/TypeScript-Make-Monaco-Builds | ||
# so, better to automate keeping on top of it. | ||
|
||
name: Related Repo Commit Bumps | ||
|
||
on: | ||
schedule: | ||
# Monthly, https://crontab.guru/#0_0_*_1-12_* | ||
- cron: '0 0 1 * *' | ||
workflow_dispatch: {} | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Configure git | ||
run: | | ||
git config --global user.email "typescriptbot@microsoft.com" | ||
git config --global user.name "TypeScript Bot" | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: 'microsoft/TypeScript-Website' | ||
path: 'ts-site' | ||
|
||
- name: Push Commit to TS Website | ||
run: | | ||
cd ts-site | ||
git commit --allow-empty -m "Monthly Bump" | ||
git config --unset-all http.https://github.com/.extraheader | ||
git push https://${{ secrets.TS_BOT_GITHUB_TOKEN }}@github.com/microsoft/TypeScript-Website.git | ||
- uses: actions/checkout@v2 | ||
with: | ||
repository: 'microsoft/TypeScript-Make-Monaco-Builds' | ||
path: 'monaco-builds' | ||
|
||
- name: Push Commit to TS Make Monaco Builds | ||
run: | | ||
cd monaco-builds | ||
git commit --allow-empty -m "Monthly Bump" | ||
git config --unset-all http.https://github.com/.extraheader | ||
git push https://${{ secrets.TS_BOT_GITHUB_TOKEN }}@github.com/microsoft/TypeScript-Make-Monaco-Builds.git |
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
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
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
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
Oops, something went wrong.