From 1f56bcab8de7b2cb0aeeee494b99460b6d8c09ad Mon Sep 17 00:00:00 2001 From: pngwn Date: Tue, 6 Aug 2024 11:54:11 +0100 Subject: [PATCH] asd (#9027) --- .github/workflows/previews-build.yml | 4 ++-- .github/workflows/previews-deploy.yml | 1 + .github/workflows/storybook-build.yml | 4 ++-- .github/workflows/storybook-deploy.yml | 2 +- .github/workflows/test-functional.yml | 2 +- .github/workflows/test-hygiene.yml | 2 +- .github/workflows/tests-js.yml | 2 +- .github/workflows/update-checks.yml | 3 +-- .github/workflows/website-build.yml | 2 +- .github/workflows/website-deploy.yml | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/previews-build.yml b/.github/workflows/previews-build.yml index e32420fe77..36ef21f85f 100644 --- a/.github/workflows/previews-build.yml +++ b/.github/workflows/previews-build.yml @@ -31,8 +31,8 @@ jobs: with: filter: "visual" token: ${{ secrets.GITHUB_TOKEN }} - test: - name: test + build: + name: "previews-build" runs-on: ubuntu-22.04 needs: changes if: needs.changes.outputs.should_run == 'true' diff --git a/.github/workflows/previews-deploy.yml b/.github/workflows/previews-deploy.yml index fe414beb17..c1731f0626 100644 --- a/.github/workflows/previews-deploy.yml +++ b/.github/workflows/previews-deploy.yml @@ -48,6 +48,7 @@ jobs: pr_number: ${{ needs.changes.outputs.pr_number }} message: spaces~pending~null deploy: + name: "previews-deploy" environment: deploy_spaces outputs: space_url: ${{ steps.upload-demo.outputs.SPACE_URL }} diff --git a/.github/workflows/storybook-build.yml b/.github/workflows/storybook-build.yml index 188ebd523c..eb609a2d7a 100644 --- a/.github/workflows/storybook-build.yml +++ b/.github/workflows/storybook-build.yml @@ -32,8 +32,8 @@ jobs: with: filter: "visual" token: ${{ secrets.GITHUB_TOKEN }} - test: - name: test + build: + name: :storybook-build runs-on: ubuntu-22.04 needs: changes if: needs.changes.outputs.should_run == 'true' diff --git a/.github/workflows/storybook-deploy.yml b/.github/workflows/storybook-deploy.yml index 86049e8a8d..d2b35dd22f 100644 --- a/.github/workflows/storybook-deploy.yml +++ b/.github/workflows/storybook-deploy.yml @@ -59,7 +59,7 @@ jobs: run_id: ${{ needs.changes.outputs.run_id }} deploy: environment: storybook - name: "deploy" + name: "storybook-deploy" needs: changes if: ${{ needs.changes.outputs.should_run == 'true' && github.repository == 'gradio-app/gradio' && !contains(needs.changes.outputs.labels, 'no-visual-update') }} runs-on: ubuntu-latest diff --git a/.github/workflows/test-functional.yml b/.github/workflows/test-functional.yml index 6cc86eac6f..fb7d62dec2 100644 --- a/.github/workflows/test-functional.yml +++ b/.github/workflows/test-functional.yml @@ -29,7 +29,7 @@ jobs: filter: "functional" token: ${{ secrets.GITHUB_TOKEN }} test: - name: "test" + name: "functional-test" runs-on: ubuntu-latest needs: changes if: needs.changes.outputs.should_run == 'true' diff --git a/.github/workflows/test-hygiene.yml b/.github/workflows/test-hygiene.yml index 2d329d5cba..9944f99ddc 100644 --- a/.github/workflows/test-hygiene.yml +++ b/.github/workflows/test-hygiene.yml @@ -13,7 +13,7 @@ concurrency: jobs: test: - name: "test" + name: "hygiene-test" runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/.github/workflows/tests-js.yml b/.github/workflows/tests-js.yml index 2b680825e2..a8bdbf5a96 100644 --- a/.github/workflows/tests-js.yml +++ b/.github/workflows/tests-js.yml @@ -34,7 +34,7 @@ jobs: filter: "js" token: ${{ secrets.GITHUB_TOKEN }} test: - name: test + name: js-test runs-on: ubuntu-22.04 needs: changes if: needs.changes.outputs.should_run == 'true' diff --git a/.github/workflows/update-checks.yml b/.github/workflows/update-checks.yml index 48e1127311..d4c31ac2f5 100644 --- a/.github/workflows/update-checks.yml +++ b/.github/workflows/update-checks.yml @@ -1,4 +1,4 @@ -name: "storybook-deploy" +name: "update-checks" on: workflow_run: @@ -39,7 +39,6 @@ jobs: environment: commit_status runs-on: ubuntu-latest needs: changes - if: needs.changes.outputs.should_run == 'false' steps: - name: set check name id: set_check_name diff --git a/.github/workflows/website-build.yml b/.github/workflows/website-build.yml index 3454586cd5..dbeef52960 100644 --- a/.github/workflows/website-build.yml +++ b/.github/workflows/website-build.yml @@ -32,7 +32,7 @@ jobs: filter: "website" token: ${{ secrets.GITHUB_TOKEN }} build: - name: build + name: "website-build" runs-on: ubuntu-22.04 needs: changes if: needs.changes.outputs.should_run == 'true' diff --git a/.github/workflows/website-deploy.yml b/.github/workflows/website-deploy.yml index 99c75b08af..e543560c58 100644 --- a/.github/workflows/website-deploy.yml +++ b/.github/workflows/website-deploy.yml @@ -45,7 +45,7 @@ jobs: message: website~pending~null deploy: environment: deploy_website - name: "deploy" + name: "website-deploy" runs-on: ubuntu-latest needs: changes if: needs.changes.outputs.should_run == 'true'