Skip to content

Commit

Permalink
πŸ’š [ci] improve names to clarify workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jxn-30 committed Oct 24, 2022
1 parent 1185683 commit 770f352
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
name: '[πŸ‘·] Build'
name: '[πŸ‘·πŸš€][πŸ‘·] Build'
if: ${{ !contains(github.event.head_commit.message, 'skip ci') || !contains(github.event.head_commit.message, 'ci-push') }}
uses: ./.github/workflows/build.yml
with:
Expand All @@ -15,7 +15,7 @@ jobs:

deploy:
needs: [build]
name: '[πŸš€] Deploy'
name: '[πŸ‘·πŸš€][πŸš€] Deploy'
if: github.repository_owner == 'LSS-Manager' && (github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev')
uses: ./.github/workflows/deploy.yml
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
check_request:
runs-on: ubuntu-latest
name: '[πŸ”Ž] Check Request'
name: '[πŸš€πŸ”Ž][πŸ”Ž] Check Request'
if: ${{ github.event.issue.pull_request && github.event.comment.body == '@LSS-Manager deploy' }}
outputs:
deploy: ${{ steps.get_maintainers.outputs.deploy }}
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:

build:
needs: [check_request]
name: '[πŸ‘·] Build'
name: '[πŸš€πŸ”Ž][πŸ‘·] Build'
if: ${{ needs.check_request.outputs.deploy == 'true' }}
uses: ./.github/workflows/build.yml
with:
Expand All @@ -65,15 +65,15 @@ jobs:

deploy:
needs: [build]
name: '[πŸš€] Deploy'
name: '[πŸš€πŸ”Ž][πŸš€] Deploy'
uses: ./.github/workflows/deploy.yml
with:
branch: ${{ needs.build.outputs.branch }}
secrets: inherit

reply_to_request:
runs-on: ubuntu-latest
name: '[πŸ’¬] reply to request'
name: '[πŸš€πŸ”Ž][πŸ’¬] reply to request'
needs:
- build
- deploy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on: [pull_request]

jobs:
build:
name: '[πŸ‘·] Build'
name: '[πŸ‘·πŸ”€][πŸ‘·] Build'
uses: ./.github/workflows/build.yml
with:
ref: ${{ github.ref }}
Expand Down

0 comments on commit 770f352

Please sign in to comment.