Skip to content

Commit

Permalink
Merge pull request #196 from SudharakaP/add-github-actions
Browse files Browse the repository at this point in the history
Add GitHub Actions for Continuous Integration
  • Loading branch information
SudharakaP authored Jul 22, 2020
2 parents 54a3e63 + cf91a05 commit 0c219a5
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ public enum CiCdTool {
TRAVIS,
JENKINS,
GITLAB,
AZURE;
AZURE,
GITHUB;

public static Optional<CiCdTool> getByName(String name) {
return Stream
Expand Down
8 changes: 8 additions & 0 deletions src/main/webapp/app/home/ci-cd/ci-cd.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,13 @@ <h3><a href="https://dev.azure.com">Azure Pipelines</a></h3>
<li>Create a new pipeline using your project</li>
</ul>
</div>
<div class="col-md-6">
<h3><a href="https://github.com/features/actions">GitHub Actions</a></h3>
<ul>
<li>A <code>github-ci.yml</code> will be added to your project.</li>
<li>Push the project to GitHub; the actions workflow will be configured on your GitHub repo.</li>
</ul>
</div>
</div>
</div>
<hr/>
Expand All @@ -61,6 +68,7 @@ <h3><a href="https://dev.azure.com">Azure Pipelines</a></h3>
<option value="jenkins">Jenkins</option>
<option value="gitlab">Gitlab</option>
<option value="azure">Azure Pipelines</option>
<option value="github">GitHub Actions</option>
</select>
</div>
</div>
Expand Down

0 comments on commit 0c219a5

Please sign in to comment.