-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into container-group-upgrade
- Loading branch information
Showing
655 changed files
with
19,015 additions
and
23,037 deletions.
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
name: Generation Check | ||
permissions: | ||
contents: read | ||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,7 @@ | ||
--- | ||
name: GoLang Linting | ||
permissions: | ||
contents: read | ||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
name: Issue Opened Triage | ||
|
||
permissions: | ||
issues: write | ||
|
||
on: | ||
issues: | ||
types: [opened] | ||
|
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,48 @@ | ||
--- | ||
name: "Pull Request Reviewed Workflow" | ||
|
||
on: | ||
workflow_run: | ||
workflows: | ||
- "Pull Request Reviewed" | ||
types: | ||
- completed | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
jobs: | ||
add-or-remove-waiting-response: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
ghrepo: ${{ steps.env_vars.outputs.ghrepo }} | ||
ghowner: ${{ steps.env_vars.outputs.ghowner }} | ||
prnumber: ${{ steps.env_vars.outputs.prnumber }} | ||
action: ${{ steps.env_vars.outputs.action }} | ||
steps: | ||
- name: Get Artifact | ||
id: get_artifact | ||
continue-on-error: true | ||
uses: dawidd6/action-download-artifact@v2 | ||
with: | ||
github_token: ${{secrets.GITHUB_TOKEN}} | ||
workflow: pull-request-reviewed.yaml | ||
|
||
- name: env_vars | ||
id: env_vars | ||
if: steps.get_artifact.outcome == 'success' | ||
run: | | ||
echo "::set-output name=ghrepo::$(cat artifact/ghrepo.txt)" | ||
echo "::set-output name=ghowner::$(cat artifact/ghowner.txt)" | ||
echo "::set-output name=prnumber::$(cat artifact/prnumber.txt)" | ||
echo "::set-output name=action::$(cat artifact/action.txt)" | ||
- name: add waiting-reponse | ||
if: steps.get_artifact.outcome == 'success' && steps.env_vars.outputs.action == 'add-waiting-response' | ||
run: | | ||
curl -X POST -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos${{ steps.env_vars.outputs.ghowner }}/${{ steps.env_vars.outputs.ghrepo }}/issues/${{ steps.env_vars.outputs.prnumber }}/labels" -d '{"labels":["waiting-response"]}' | ||
- name: remove waiting-reponse | ||
if: steps.get_artifact.outcome == 'success' && steps.env_vars.outputs.action == 'remove-waiting-response' | ||
run: | | ||
curl -X DELETE -H "Accept: application/vnd.github+json" -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" "https://api.github.com/repos${{ steps.env_vars.outputs.ghowner }}/${{ steps.env_vars.outputs.ghrepo }}/issues/${{ steps.env_vars.outputs.prnumber }}/labels/waiting-response" |
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
name: "Pull Request Triage" | ||
|
||
permissions: | ||
pull-requests: write | ||
|
||
on: [pull_request_target] | ||
|
||
jobs: | ||
|
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: TeamCity Config Test | ||
|
||
permissions: | ||
contents: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: 32 Bit Build | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: Unit Tests | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: Validate Examples | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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 |
---|---|---|
@@ -1,5 +1,9 @@ | ||
--- | ||
name: Website Linting | ||
|
||
permissions: | ||
pull-requests: read | ||
|
||
on: | ||
pull_request: | ||
types: ['opened', 'synchronize'] | ||
|
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.