From 6a1d49cd84c8c20ef2047ad4b128e3df9e0c719b Mon Sep 17 00:00:00 2001 From: Blake Mason Date: Wed, 3 Aug 2022 12:32:39 -0700 Subject: [PATCH] [C] Simplify github workflow names and log output --- .github/workflows/develop-pr-gae.yaml | 4 ++-- .github/workflows/develop-push-gae.yaml | 4 ++-- .github/workflows/master-pr-gae.yaml | 4 ++-- .github/workflows/master-push-gae.yaml | 4 ++-- .github/workflows/master-tags.yaml | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/develop-pr-gae.yaml b/.github/workflows/develop-pr-gae.yaml index b373d8bf..f574f195 100644 --- a/.github/workflows/develop-pr-gae.yaml +++ b/.github/workflows/develop-pr-gae.yaml @@ -1,4 +1,4 @@ -name: 'Preview Dev PR' +name: 'PR Preview to Dev' on: pull_request: @@ -12,7 +12,7 @@ on: jobs: build-push-deploy: - name: 'Deploy Preview Version' + name: 'Build and Deploy PR Preview to Development' runs-on: ubuntu-latest if: ${{ (github.event.action != 'closed') && (startsWith(github.head_ref, 'preview') == true) }} diff --git a/.github/workflows/develop-push-gae.yaml b/.github/workflows/develop-push-gae.yaml index 8c261399..1cd5f9a7 100644 --- a/.github/workflows/develop-push-gae.yaml +++ b/.github/workflows/develop-push-gae.yaml @@ -1,4 +1,4 @@ -name: 'Push to Development' +name: 'Deploy to Dev' on: push: @@ -7,7 +7,7 @@ on: jobs: build-push-deploy: - name: 'Deploy Development Version' + name: 'Build and Deploy to Development' runs-on: ubuntu-latest if: ${{ github.event.action != 'closed'}} diff --git a/.github/workflows/master-pr-gae.yaml b/.github/workflows/master-pr-gae.yaml index 687574e6..066fd7c0 100644 --- a/.github/workflows/master-pr-gae.yaml +++ b/.github/workflows/master-pr-gae.yaml @@ -1,4 +1,4 @@ -name: 'Preview Int PR' +name: 'PR Preview to Int' on: pull_request: @@ -12,7 +12,7 @@ on: jobs: build-push-deploy: - name: 'Deploy Preview Version' + name: 'Build and Deploy PR Preview to Integration' runs-on: ubuntu-latest if: ${{ (github.event.action != 'closed') && (startsWith(github.head_ref, 'preview') == true) }} diff --git a/.github/workflows/master-push-gae.yaml b/.github/workflows/master-push-gae.yaml index 783f8587..6d537237 100644 --- a/.github/workflows/master-push-gae.yaml +++ b/.github/workflows/master-push-gae.yaml @@ -1,4 +1,4 @@ -name: 'Push to Integration' +name: 'Deploy to Integration' on: push: @@ -7,7 +7,7 @@ on: jobs: build-push-deploy: - name: 'Deploy Integration Version' + name: 'Build and Deploy to Integration' runs-on: ubuntu-latest if: ${{ github.event.action != 'closed'}} diff --git a/.github/workflows/master-tags.yaml b/.github/workflows/master-tags.yaml index 7ead3899..29c530d2 100644 --- a/.github/workflows/master-tags.yaml +++ b/.github/workflows/master-tags.yaml @@ -1,4 +1,4 @@ -name: 'Push to Production' +name: 'Deploy to Production' on: push: @@ -9,7 +9,7 @@ on: jobs: build-push-deploy: - name: 'Deploy Production Version' + name: 'Build and Deploy to Production' runs-on: ubuntu-latest if: ${{ github.event.action != 'closed'}}