Skip to content

Commit

Permalink
Merge pull request #1 from attiasas/setup_repo
Browse files Browse the repository at this point in the history
Setup Repository
  • Loading branch information
attiasas authored Aug 17, 2023
2 parents 7fb2f0c + 289f226 commit 1cfef60
Show file tree
Hide file tree
Showing 9 changed files with 227 additions and 1 deletion.
61 changes: 61 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
---
name: "🐛 Bug Report"
description: Create a report to help us improve
labels: [ bug ]
assignees: [ ]
body:
- type: textarea
id: description
attributes:
label: Describe the bug
description: What is the problem? A clear and concise description of the bug.
validations:
required: true

- type: textarea
id: current
attributes:
label: Current behavior
description: |
Please include full errors, uncaught exceptions, screenshots, and relevant logs.
validations:
required: true

- type: textarea
id: reproduction
attributes:
label: Reproduction steps
description: |
Provide steps to reproduce the behavior.
validations:
required: false

- type: textarea
id: expected
attributes:
label: Expected behavior
description: |
What did you expect to happen?
validations:
required: false

- type: input
id: open-interactive-simulation-deployer-version
attributes:
label: OIS deployer version
validations:
required: true

- type: input
id: os-version
attributes:
label: Operating system type and version
validations:
required: true

- type: input
id: gradle-version
attributes:
label: Gradle version
validations:
required: false
37 changes: 37 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
---
name: "⭐️ Feature request"
description: Suggest an idea for this project
labels: [ new feature ]
assignees: [ ]
body:
- type: textarea
id: description
attributes:
label: Is your feature request related to a problem? Please describe.
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
validations:
required: true

- type: textarea
id: solution
attributes:
label: Describe the solution you'd like to see
description: A clear and concise description of the new feature.
validations:
required: true

- type: textarea
id: alternatives
attributes:
label: Describe alternatives you've considered
description: If applicable, a clear and concise description of any alternative solutions or features you've considered.
validations:
required: false

- type: textarea
id: extras
attributes:
label: Additional context
description: Add any other context or screenshots about the feature request here.
validations:
required: false
12 changes: 12 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
name: "❓ Question"
description: Ask a question
labels: [ question ]
assignees: [ ]
body:
- type: textarea
id: question
attributes:
label: How can we help?
validations:
required: true
5 changes: 5 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
- [ ] I read the [contribution](../CONTRIBUTING.md) notes.

- [ ] All [tests](../CONTRIBUTING.md) passed. If this feature is not already covered by the tests, I added new
tests.
-----
20 changes: 20 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
changelog:
exclude:
labels:
- ignore for release
categories:
- title: Breaking Changes 🚨
labels:
- breaking change
- title: Exciting New Features 🎉
labels:
- new feature
- title: Improvements 🌱
labels:
- improvement
- title: Bug Fixes 🛠
labels:
- bug
- title: Other Changes 📚
labels:
- "*"
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on: push

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macOS-latest ]
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
ref: ${{ github.event.pull_request.head.sha }}

# Install required tools
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: "temurin"
java-version: "11"

# Run tests
- name: Tests on macOS, Linux
run: ./gradlew clean check
if: runner.os != 'Windows'
- name: Tests on Windows
run: ./gradlew.bat clean check
if: runner.os == 'Windows'

# Stop Gradle daemon
- name: Stop Gradle
run: ./gradlew --stop
26 changes: 26 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# 📖 Guidelines

- If the existing tests do not already cover your changes, please add tests.

---

# ⚒️ Building the plugin

To build the library sources, please follow these steps:

1. Clone the code from Git.
2. Build the plugin by running the following Gradle command:
```
gradlew clean build
```

To build the library sources and publish it locally, run the following Gradle command:
```
gradlew publishToMavenLocal
```

---

# 🧪 Testing the plugin

To test the library sources, please follow these steps:
31 changes: 30 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1 +1,30 @@
# open-interactive-simulation-deployer
<div align="center">

# open-interactive-simulation-deployer

</div>

---

## Table of Contents
- [📚 Overview](#-overview)
- [📦 Installation](#-installation)
- [🐞 Reporting Issues](#-reporting-issues)
- [🤝 Contributions](#-contributions)

## 📚 Overview

## 📦 Installation

## 🐞 Reporting Issues

We highly recommend running Gradle with the ```-d```
option to get useful and readable debug information if something goes wrong with your build.

Please help us improve the library
by [reporting any issues](https://github.com/jfrog/artifactory-gradle-plugin/issues/new/choose) you encounter.

## 🤝 Contributions

We welcome pull requests from the community. To help us improve this project, please read
our [Contribution](./CONTRIBUTING.md#-guidelines) guide.
Empty file modified gradlew
100644 → 100755
Empty file.

0 comments on commit 1cfef60

Please sign in to comment.