Skip to content

Commit

Permalink
[C] Simplify github workflow names and log output
Browse files Browse the repository at this point in the history
  • Loading branch information
Blake Mason committed Aug 5, 2022
1 parent d6aa77c commit 6a1d49c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/develop-pr-gae.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Preview Dev PR'
name: 'PR Preview to Dev'

on:
pull_request:
Expand All @@ -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) }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/develop-push-gae.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Push to Development'
name: 'Deploy to Dev'

on:
push:
Expand All @@ -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'}}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-pr-gae.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Preview Int PR'
name: 'PR Preview to Int'

on:
pull_request:
Expand All @@ -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) }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-push-gae.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Push to Integration'
name: 'Deploy to Integration'

on:
push:
Expand All @@ -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'}}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/master-tags.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Push to Production'
name: 'Deploy to Production'

on:
push:
Expand All @@ -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'}}

Expand Down

0 comments on commit 6a1d49c

Please sign in to comment.