Browse Source
👷 Add GitHub Actions step dump context to debug external failures (#10008)
pull/10011/head
Sebastián Ramírez
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with
40 additions and
0 deletions
-
.github/workflows/issue-manager.yml
-
.github/workflows/label-approved.yml
-
.github/workflows/latest-changes.yml
-
.github/workflows/notify-translations.yml
-
.github/workflows/people.yml
-
.github/workflows/smokeshow.yml
-
.github/workflows/test.yml
|
|
@ -19,6 +19,10 @@ jobs: |
|
|
|
if: github.repository_owner == 'tiangolo' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: tiangolo/[email protected] |
|
|
|
with: |
|
|
|
token: ${{ secrets.FASTAPI_ISSUE_MANAGER }} |
|
|
|
|
|
@ -9,6 +9,10 @@ jobs: |
|
|
|
if: github.repository_owner == 'tiangolo' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: docker://tiangolo/label-approved:0.0.2 |
|
|
|
with: |
|
|
|
token: ${{ secrets.FASTAPI_LABEL_APPROVED }} |
|
|
|
|
|
@ -20,6 +20,10 @@ jobs: |
|
|
|
latest-changes: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
with: |
|
|
|
# To allow latest-changes to commit to the main branch |
|
|
|
|
|
@ -19,6 +19,10 @@ jobs: |
|
|
|
notify-translations: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
# Allow debugging with tmate |
|
|
|
- name: Setup tmate session |
|
|
|
|
|
@ -15,6 +15,10 @@ jobs: |
|
|
|
if: github.repository_owner == 'tiangolo' |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
# Ref: https://github.com/actions/runner/issues/2033 |
|
|
|
- name: Fix git safe.directory in container |
|
|
|
|
|
@ -14,6 +14,10 @@ jobs: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/setup-python@v4 |
|
|
|
with: |
|
|
|
python-version: '3.9' |
|
|
|
|
|
@ -13,6 +13,10 @@ jobs: |
|
|
|
lint: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- name: Set up Python |
|
|
|
uses: actions/setup-python@v4 |
|
|
@ -42,6 +46,10 @@ jobs: |
|
|
|
pydantic-version: ["pydantic-v1", "pydantic-v2"] |
|
|
|
fail-fast: false |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- name: Set up Python |
|
|
|
uses: actions/setup-python@v4 |
|
|
@ -80,6 +88,10 @@ jobs: |
|
|
|
needs: [test] |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- uses: actions/checkout@v3 |
|
|
|
- uses: actions/setup-python@v4 |
|
|
|
with: |
|
|
@ -110,6 +122,10 @@ jobs: |
|
|
|
- coverage-combine |
|
|
|
runs-on: ubuntu-latest |
|
|
|
steps: |
|
|
|
- name: Dump GitHub context |
|
|
|
env: |
|
|
|
GITHUB_CONTEXT: ${{ toJson(github) }} |
|
|
|
run: echo "$GITHUB_CONTEXT" |
|
|
|
- name: Decide whether the needed jobs succeeded or failed |
|
|
|
uses: re-actors/alls-green@release/v1 |
|
|
|
with: |
|
|
|