diff --git a/ci/ant.yml b/ci/ant.yml index 4c9770d..7077f90 100644 --- a/ci/ant.yml +++ b/ci/ant.yml @@ -1,3 +1,6 @@ +# This workflow will build a Java project with Ant +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant + name: Java CI on: diff --git a/ci/aws.yml b/ci/aws.yml index ee498c6..40094ae 100644 --- a/ci/aws.yml +++ b/ci/aws.yml @@ -1,5 +1,5 @@ # This workflow will build and push a new container image to Amazon ECR, -# and then will deploy a new task definition to Amazon ECS, whenever a release is created +# and then will deploy a new task definition to Amazon ECS, when a release is created # # To use this workflow, you will need to complete the following set-up steps: # diff --git a/ci/azure.yml b/ci/azure.yml index 731418e..d0f5576 100644 --- a/ci/azure.yml +++ b/ci/azure.yml @@ -1,4 +1,4 @@ -# This workflow will build and push a node.js application to an Azure Web App whenever a release is created. +# This workflow will build and push a node.js application to an Azure Web App when a release is created. # # To configure this workflow: # diff --git a/ci/google.yml b/ci/google.yml index 3b743b6..b8d1079 100644 --- a/ci/google.yml +++ b/ci/google.yml @@ -1,4 +1,4 @@ -# This workflow will build a docker container, publish it to Google Container Registry, and deploy it to GKE whenever a release is created +# This workflow will build a docker container, publish it to Google Container Registry, and deploy it to GKE when a release is created # # To configure this workflow: # diff --git a/ci/gradle-publish.yml b/ci/gradle-publish.yml index 53aa48c..fe0fd85 100644 --- a/ci/gradle-publish.yml +++ b/ci/gradle-publish.yml @@ -1,4 +1,4 @@ -# This workflow will build a package using gradle and then publish it to GitHub packages whenever a release is created +# This workflow will build a package using Gradle and then publish it to GitHub packages when a release is created # For more information see: https://github.com/actions/setup-java#publishing-using-gradle name: Gradle Package diff --git a/ci/gradle.yml b/ci/gradle.yml index fdb2e67..50bea75 100644 --- a/ci/gradle.yml +++ b/ci/gradle.yml @@ -1,4 +1,7 @@ -name: Java CI +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Java CI with Gradle on: push: diff --git a/ci/maven-publish.yml b/ci/maven-publish.yml index 64b1ae0..fb1c7ee 100644 --- a/ci/maven-publish.yml +++ b/ci/maven-publish.yml @@ -1,4 +1,4 @@ -# This workflow will build a package using Maven and then publish it to GitHub packages whenever a release is created +# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created # For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path name: Maven Package diff --git a/ci/maven.yml b/ci/maven.yml index 8eefff1..c3e16c6 100644 --- a/ci/maven.yml +++ b/ci/maven.yml @@ -1,4 +1,7 @@ -name: Java CI +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Java CI with Maven on: push: diff --git a/ci/npm-publish.yml b/ci/npm-publish.yml index 0eede46..81cbddb 100644 --- a/ci/npm-publish.yml +++ b/ci/npm-publish.yml @@ -1,3 +1,6 @@ +# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created +# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages + name: Node.js Package on: