This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
118 changed files
with
5,914 additions
and
1,322 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: JonasWanke |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Unicorn | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
- edited | ||
- closed | ||
- reopened | ||
- synchronize | ||
|
||
jobs: | ||
unicorn: | ||
name: Unicorn | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: JonasWanke/unicorn@v0.1 | ||
with: | ||
repo-token: "${{ secrets.UNICORN_TOKEN }}" |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,84 @@ | ||
--- | ||
unicornVersion: "0.0.2" | ||
type: "OTHER" | ||
unicornVersion: "0.1.0" | ||
name: "Unicorn" | ||
description: "\U0001f984 A tool to create, work on, test and deploy projects." | ||
version: "0.0.2" | ||
license: null | ||
version: "0.1.0" | ||
categorization: | ||
component: | ||
values: | ||
- name: "action" | ||
description: "GitHub Action related code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/action/**" | ||
- name: "api" | ||
description: "DSL/Action/Template-API related code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/api/**" | ||
- name: "commands" | ||
description: "Builtin commands" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/commands/**" | ||
- name: "console" | ||
description: "Console environment related code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/console/**" | ||
- name: "core" | ||
description: "Core code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/core/**" | ||
- name: "template" | ||
description: "Template-related code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/template/**" | ||
- name: "templates" | ||
description: "Default templates" | ||
paths: | ||
- "templates/**" | ||
- name: "utils" | ||
description: "Utility code" | ||
paths: | ||
- "src/main/kotlin/com/jonaswanke/unicorn/utils/**" | ||
labels: | ||
color: "c2e0c6" | ||
prefix: "C: " | ||
descriptionPrefix: "Component: " | ||
priority: | ||
values: | ||
- name: "0" | ||
description: null | ||
- name: "1" | ||
description: "1 (Lowest)" | ||
- name: "2" | ||
description: "2 (Low)" | ||
- name: "3" | ||
description: "3 (Medium)" | ||
- name: "4" | ||
description: "4 (High)" | ||
- name: "5" | ||
description: "5 (Highest)" | ||
label: | ||
color: "e5b5ff" | ||
prefix: "P: " | ||
descriptionPrefix: "Priority: " | ||
type: | ||
values: | ||
- name: "build" | ||
description: "Build changes" | ||
- name: "chore" | ||
description: "Chores" | ||
- name: "ci" | ||
description: "CI changes" | ||
- name: "docs" | ||
description: "Documentation updates" | ||
- name: "feat" | ||
description: "New Features" | ||
- name: "fix" | ||
description: "Bugfixes" | ||
- name: "perf" | ||
description: "Performance improvements" | ||
- name: "refactor" | ||
description: "Refactoring" | ||
labels: | ||
color: "c5def5" | ||
prefix: "T: " | ||
descriptionPrefix: "Type: " |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
FROM gradle:5.6-jdk8 as builder | ||
COPY --chown=gradle:gradle . /home/src | ||
RUN ls | ||
WORKDIR /home/src | ||
RUN gradle actionShadowJar | ||
|
||
|
||
FROM openjdk:8-jre-slim | ||
|
||
WORKDIR / | ||
COPY --from=builder /home/src/build/libs/unicorn-action.jar / | ||
ENTRYPOINT ["java", "-jar", "/unicorn-action.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
name: 'Unicorn Action' | ||
author: 'Jonas Wanke <contact@wanke.dev>' | ||
description: 'Check your PRs with 🦄 Unicorn' | ||
inputs: | ||
repo-token: | ||
description: 'The GITHUB_TOKEN secret' | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'Dockerfile' | ||
branding: | ||
icon: check | ||
color: purple |
Oops, something went wrong.