You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@apisix.apache.org by ju...@apache.org on 2020/10/23 04:14:05 UTC

[apisix-dashboard] 01/02: feat: update action's name

This is an automated email from the ASF dual-hosted git repository.

juzhiyuan pushed a commit to branch docs-improvment
in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git

commit d85900c483ebec2e99ef7be2fbf02e9bd45c245e
Author: juzhiyuan <ju...@apache.org>
AuthorDate: Fri Oct 23 12:12:12 2020 +0800

    feat: update action's name
---
 .github/workflows/{api_cicd.yml => deploy-api.yml}           |  2 +-
 .github/workflows/{deploy.yml => deploy-frontend.yml}        |  2 +-
 .github/workflows/{license_ci.yml => license-checker.yml}    |  2 +-
 .github/workflows/multiple-node-build.yml                    |  2 +-
 .github/workflows/{api_ci.yml => test-api.yml}               |  2 +-
 .github/workflows/{api_newci.yml => test-deploy-with-go.yml} | 12 +++++++-----
 6 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/.github/workflows/api_cicd.yml b/.github/workflows/deploy-api.yml
similarity index 97%
rename from .github/workflows/api_cicd.yml
rename to .github/workflows/deploy-api.yml
index d45d853..ef4ae47 100644
--- a/.github/workflows/api_cicd.yml
+++ b/.github/workflows/deploy-api.yml
@@ -1,4 +1,4 @@
-name: API CI && CD
+name: Test then deploy API to Azure
 
 on:
   push:
diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy-frontend.yml
similarity index 94%
rename from .github/workflows/deploy.yml
rename to .github/workflows/deploy-frontend.yml
index cb6c978..9998d50 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy-frontend.yml
@@ -1,4 +1,4 @@
-name: Deploy to Azure
+name: Deploy frontend to Azure
 
 on:
   push:
diff --git a/.github/workflows/license_ci.yml b/.github/workflows/license-checker.yml
similarity index 92%
rename from .github/workflows/license_ci.yml
rename to .github/workflows/license-checker.yml
index 412be05..23c5ac8 100644
--- a/.github/workflows/license_ci.yml
+++ b/.github/workflows/license-checker.yml
@@ -1,4 +1,4 @@
-name: LICENSE CI
+name: License Checker
 
 on:
   push:
diff --git a/.github/workflows/multiple-node-build.yml b/.github/workflows/multiple-node-build.yml
index e713e1d..2e6895c 100644
--- a/.github/workflows/multiple-node-build.yml
+++ b/.github/workflows/multiple-node-build.yml
@@ -1,6 +1,6 @@
 # This is a basic test to build the dashboard
 
-name: multiple-node-build
+name: test building frontend in multiple node version
 
 # Controls when the action will run. Triggers the workflow on push or pull request
 # events but only for the master branch
diff --git a/.github/workflows/api_ci.yml b/.github/workflows/test-api.yml
similarity index 98%
rename from .github/workflows/api_ci.yml
rename to .github/workflows/test-api.yml
index a5b42f4..83f4dba 100644
--- a/.github/workflows/api_ci.yml
+++ b/.github/workflows/test-api.yml
@@ -1,4 +1,4 @@
-name: API CI
+name: Test API
 
 on:
   push:
diff --git a/.github/workflows/api_newci.yml b/.github/workflows/test-deploy-with-go.yml
similarity index 93%
rename from .github/workflows/api_newci.yml
rename to .github/workflows/test-deploy-with-go.yml
index ce59db7..59fefbb 100644
--- a/.github/workflows/api_newci.yml
+++ b/.github/workflows/test-deploy-with-go.yml
@@ -1,10 +1,12 @@
-name: NewCI
+name: Test deploy frontend and API using Go
 
 on:
   push:
-    branches: [ master ]
+    branches:
+      - master
   pull_request:
-    branches: [ master ]
+    branches:
+      - master
 
 jobs:
   frontend:
@@ -30,11 +32,11 @@ jobs:
           name: dist
           path: ./dist/
 
-  backend: 
+  backend:
     name: Back-End compile
     needs: frontend
     runs-on: ubuntu-latest
-    
+
     steps:
       - uses: actions/checkout@v2