Merge pull request #893 from microsoft/cs-mainbranch

chore: Rename default branch name to main
This commit is contained in:
Shi Chen 2021-07-30 15:57:03 +08:00 коммит произвёл GitHub
Родитель b992266eb9 69269112e8
Коммит ebbce2c095
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
5 изменённых файлов: 9 добавлений и 9 удалений

4
.github/workflows/codeql-analysis.yml поставляемый
Просмотреть файл

@ -2,9 +2,9 @@ name: "CodeQL"
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
schedule: schedule:
- cron: "0 1 * * 5" - cron: "0 1 * * 5"

4
.github/workflows/main.yml поставляемый
Просмотреть файл

@ -1,9 +1,9 @@
name: Build & Publish name: Build & Publish
on: on:
push: push:
branches: [master] branches: [main]
pull_request: pull_request:
branches: [master] branches: [main]
release: release:
types: [published] types: [published]

2
.github/workflows/release-drafter.yml поставляемый
Просмотреть файл

@ -3,7 +3,7 @@ name: Release Drafter
on: on:
push: push:
branches: branches:
- master - main
jobs: jobs:
update_release_draft: update_release_draft:

Просмотреть файл

@ -61,9 +61,9 @@ Tasks run via the `Run a Gradle Build` command are not reflected in any of the t
</details> </details>
<details><summary>Control task terminal behaviour</summary> <details><summary>Control task terminal behaviour</summary>
---- ----
Use one terminal for each task type (default): Use one terminal for each task type (default):
```json ```json
@ -379,7 +379,7 @@ Refer to [CONTRIBUTING.md](./CONTRIBUTING.md) for instructions on how to run the
This project was originally started by [@badsyntax](https://github.com/badsyntax) and is now currently maintained by Microsoft. Huge thanks to [@badsyntax](https://github.com/badsyntax) who started it all and made this Gradle extension available. This project was originally started by [@badsyntax](https://github.com/badsyntax) and is now currently maintained by Microsoft. Huge thanks to [@badsyntax](https://github.com/badsyntax) who started it all and made this Gradle extension available.
- Originally forked from [Cazzar/vscode-gradle](https://github.com/Cazzar/vscode-gradle) - Originally forked from [Cazzar/vscode-gradle](https://github.com/Cazzar/vscode-gradle)
- Inspired by the built-in [npm extension](https://github.com/microsoft/vscode/tree/master/extensions/npm) - Inspired by the built-in [npm extension](https://github.com/microsoft/vscode/tree/main/extensions/npm)
- Thanks to [@hanct](https://github.com/hanct) for providing feature suggestions and BETA testing - Thanks to [@hanct](https://github.com/hanct) for providing feature suggestions and BETA testing
- Thanks to [@dcermak](https://github.com/dcermak) for providing inspiration to write some unit tests - Thanks to [@dcermak](https://github.com/dcermak) for providing inspiration to write some unit tests
- Thanks to all who have submitted bug reports and feedback - Thanks to all who have submitted bug reports and feedback

Просмотреть файл

@ -1,4 +1,4 @@
// Taken from https://github.com/microsoft/vscode/blob/master/src/vs/base/common/decorators.ts // Taken from https://github.com/microsoft/vscode/blob/main/src/vs/base/common/decorators.ts
/* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/no-explicit-any */
/* eslint-disable @typescript-eslint/ban-types */ /* eslint-disable @typescript-eslint/ban-types */