From e6da0f10e5da8ad7a2ee2d59e30ac487a69bbc15 Mon Sep 17 00:00:00 2001 From: Jon Rohan Date: Sun, 4 Apr 2021 21:35:00 -0700 Subject: [PATCH] Better workflow naming --- .github/workflows/labeler.yml | 2 +- .github/workflows/release.yml | 3 ++- .github/workflows/release_canary.yml | 3 ++- .github/workflows/release_candidate.yml | 3 ++- 4 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/labeler.yml b/.github/workflows/labeler.yml index ae9672fa..e2cfe246 100644 --- a/.github/workflows/labeler.yml +++ b/.github/workflows/labeler.yml @@ -3,7 +3,7 @@ on: pull_request_target jobs: label-release: - name: Release + name: Semantic Version runs-on: ubuntu-latest steps: - uses: actions/github-script@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d10a335c..5c66fa2e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,10 +1,11 @@ -name: Publish Release +name: Release on: push: branches: - 'main' jobs: release: + name: Final if: ${{ github.repository == 'primer/css' }} runs-on: ubuntu-latest diff --git a/.github/workflows/release_canary.yml b/.github/workflows/release_canary.yml index b6f00afb..885cfa28 100644 --- a/.github/workflows/release_canary.yml +++ b/.github/workflows/release_canary.yml @@ -1,4 +1,4 @@ -name: Release Canary +name: Release on: push: branches-ignore: @@ -19,6 +19,7 @@ on: jobs: release-canary: + name: Canary if: ${{ github.repository == 'primer/css' }} runs-on: ubuntu-latest diff --git a/.github/workflows/release_candidate.yml b/.github/workflows/release_candidate.yml index dc57b978..b0c139ec 100644 --- a/.github/workflows/release_candidate.yml +++ b/.github/workflows/release_candidate.yml @@ -1,4 +1,4 @@ -name: Release Candidate +name: Release on: push: branches: @@ -6,6 +6,7 @@ on: jobs: release-candidate: + name: Candidate if: ${{ github.repository == 'primer/css' }} runs-on: ubuntu-latest