Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bayudwiyansatria committed Sep 28, 2023
0 parents commit 9c3ba8c
Show file tree
Hide file tree
Showing 26 changed files with 1,146 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Lines starting with '#' are comments.
# Each line is a file pattern followed by one or more owners.

# More details are here: https://help.github.com/articles/about-codeowners/

# The '*' pattern is global owners.
# Not adding in this PR, but I'd like to try adding a global owner set with the entire team.
# One interpretation of their docs is that global owners are added only if not removed
# by a more local rule.

# Order is important. The last matching pattern has the most precedence.
# The folders are ordered as follows:

# In each subsection folders are ordered first by depth, then alphabetically.
# This should make it easy to add new rules without breaking existing ones.

# Global Owner
* @bayudwiyansatria
3 changes: 3 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
patreon: bayudwiyansatria
ko_fi: bayudwiyansatria
custom: [paypal.me/bayudwiyansatria]
38 changes: 38 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
name: Bug report
about: Create a report to help us improve
title: ''
labels: ''
assignees: ''

---

**Describe the bug**
A clear and concise description of what the bug is.

**To Reproduce**
Steps to reproduce the behavior:
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error

**Expected behavior**
A clear and concise description of what you expected to happen.

**Screenshots**
If applicable, add screenshots to help explain your problem.

**Desktop (please complete the following information):**
- OS: [e.g. iOS]
- Browser [e.g. chrome, safari]
- Version [e.g. 22]

**Smartphone (please complete the following information):**
- Device: [e.g. iPhone6]
- OS: [e.g. iOS8.1]
- Browser [e.g. stock browser, safari]
- Version [e.g. 22]

**Additional context**
Add any other context about the problem here.
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: Suggest an idea for this project
title: ''
labels: ''
assignees: ''

---

**Is your feature request related to a problem? Please describe.**
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]

**Describe the solution you'd like**
A clear and concise description of what you want to happen.

**Describe alternatives you've considered**
A clear and concise description of any alternative solutions or features you've considered.

**Additional context**
Add any other context or screenshots about the feature request here.
Empty file.
16 changes: 16 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# PULL REQUEST TEMPLETE

Thank you for sending in this pull request. Please make sure you take a look at the [contributing file](../../CONTRIBUTING.md). Here's a few things for you to consider in this pull request:

Please describe any change that you made to `changes-log` by create new `.md` files with format `YYYY-MM-DD.md`, this will help other to tracking what changes that have been made at this repository, you could found `changes-log` folder at `docs`.

Please ensure you code are :

- [ ] Builds clean without any errors or warnings.
- [ ] Are using approved terminology.
- [ ] Have added unit tests.

Some general notes:

- [ ] Does not send data to any 3rd party service except for the purposes of installing dependencies.
- [ ] Does not use a paid service or product.
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE/request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# REQUEST TEMPLATE
19 changes: 19 additions & 0 deletions .github/release-drafter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name-template: 'v$NEXT_PATCH_VERSION 🌈'
tag-template: 'v$NEXT_PATCH_VERSION'
categories:
- title: '🚀 Features'
labels:
- 'feature'
- 'enhancement'
- title: '🐛 Bug Fixes'
labels:
- 'fix'
- 'bugfix'
- 'bug'
- title: '🧰 Maintenance'
label: 'chore'
change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
template: |
$CHANGES
$CONTRIBUTORS
$PREVIOUS_TAG
17 changes: 17 additions & 0 deletions .github/stale.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Number of days of inactivity before an issue becomes stale
daysUntilStale: 7
# Number of days of inactivity before a stale issue is closed
daysUntilClose: 7
# Issues with these labels will never be considered stale
exemptLabels:
- pinned
- security
# Label to use when marking an issue as stale
staleLabel: wontfix
# Comment to post when marking an issue as stale. Set to `false` to disable
markComment: >
This issue has been automatically marked as stale because it has not had
recent activity. It will be closed if no further activity occurs. Thank you
for your contributions.
# Comment to post when closing a stale issue. Set to `false` to disable
closeComment: false
52 changes: 52 additions & 0 deletions .github/workflows/java.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Java Action
on:
push:
branches:
- master
jobs:
# Build
build:
name: Build
strategy:
matrix:
java-version: [1.8]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
# Installing Matrix OS Dependencies
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'windows-latest'
run: choco install git
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'macos-latest'
run: brew install git
# Get Sources
- name: Checkout sources control
uses: actions/checkout@v1
# Setup Environment
- name: Setup java version $ {{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
java-package: jdk
architecture: x64
# Runner
- name: Running Environment
run: |
java -version
# Deployment
deploy:
name: Deploying
needs: build
strategy:
matrix:
java-version: [1.8]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Test Environment
run : |
echo ${{ matrix.os }}
50 changes: 50 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Github Action
on:
# Action On
pull_request:
branches:
- master
jobs:
# Build
build:
name: Build
strategy:
matrix:
java-version: [1.7]
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}
steps:
# Installing Matrix OS Dependencies
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'windows-latest'
run: choco install git
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'macos-latest'
run: brew install git
# Get Sources
- name: Checkout sources control
uses: actions/checkout@v1
# Setup Environment
- name: Setup java version $ {{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
java-package: jdk
architecture: x64
# Runner
- name: Running Environment
run: |
java -version
# Deployment
deploy:
name: Deploying
needs: build
runs-on: ${{ matrix.os }}
steps:
- name: Running Environment
run: |
java -version
20 changes: 20 additions & 0 deletions .github/workflows/nodejs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Node JS Action
on:
pull_request:
branches:
- master
jobs:
build:
name: Main
runs-on: ${{ matrix.os }}
strategy:
matrix:
node-version: [10]
os: [ubuntu-latest]
steps:
- name: Prepare
uses: actions/checkout@v1
- name: Set Up Node JS
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.java-version }}
26 changes: 26 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Release Action

on:
push:
tags:
- 'v*'

jobs:
release:
name: Main
runs-on: ${{ matrix.os }}
strategy:
matrix:
java-version: [1.8]
os: [ubuntu-latest]
steps:
- name: Prepare
uses: actions/checkout@v1
- name: Set Up Java Development Kit
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
- name: Creating Release Draft
uses: toolmantim/release-drafter@v5.2.0
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
53 changes: 53 additions & 0 deletions .github/workflows/user.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: User Action
on:
push:
branches:
- users/*
jobs:
# Build
build:
name: Build
strategy:
matrix:
java-version: [1.7, 1.8]
os: [ubuntu-latest, windows-latest, macos-latest]

runs-on: ${{ matrix.os }}
steps:
# Installing Matrix OS Dependencies
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get update
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'windows-latest'
run: choco install git
- name: Install dependencies ${{ matrix.os }}
if: matrix.os == 'macos-latest'
run: brew install git
# Get Sources
- name: Checkout sources control
uses: actions/checkout@v1
# Setup Environment
- name: Setup java version $ {{ matrix.java-version }}
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java-version }}
java-package: jdk
architecture: x64
# Runner
- name: Running Environment
run: |
java -version
# Deployment
deploy:
name: Deploying
needs: build
strategy:
matrix:
java-version: [1.8]
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Test Environment
run : |
echo ${{ matrix.os }}
Loading

0 comments on commit 9c3ba8c

Please sign in to comment.