Skip to content

Commit

Permalink
chore: adapt repo template to docker
Browse files Browse the repository at this point in the history
Refs: #3
  • Loading branch information
ariwk committed May 25, 2024
1 parent 6fcb60e commit 242e0bd
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 227 deletions.
34 changes: 5 additions & 29 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,57 +7,33 @@ body:
attributes:
value: |
Before requesting: search [existing issues](../../../../labels/bug).
- type: textarea
attributes:
label: Current Behavior
description: "Description of the current behavior."
description: Description of the current behavior.
validations:
required: true

- type: textarea
attributes:
label: Expected Behavior
description: "Description of the expected behavior."
description: Description of the expected behavior.
validations:
required: true

- type: textarea
attributes:
label: Steps To Reproduce
description: "Example steps to reproduce the behavior:"
description: 'Example steps to reproduce the behavior:'
placeholder: |
1. In this environment...
2. With this config...
3. Run '...'
4. See error...
validations:
required: true

- type: input
attributes:
label: Environment - OS
description: "Linux or Windows"
validations:
required: true

- type: input
attributes:
label: Polarion version
description: "2310, 2404, etc..."
validations:
required: true

- type: input
attributes:
label: Extension Version
description: "It can be found under https://<<host>>/polarion/#/project/dev/administration/<<Extension Name>>/About"
validations:
required: true

- type: textarea
attributes:
label: Anything else
description: "Further hints, links, or references? Any additional information probably helping in root cause analysis."
description: Further hints, links, or references? Any additional information
probably helping in root cause analysis.
validations:
required: false
21 changes: 10 additions & 11 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,26 +7,25 @@ body:
attributes:
value: |
Before requesting: search [existing issues](../../../../labels/enhancement).
- type: textarea
attributes:
label: "Description"
description: "Describe the feature you're requesting."
placeholder: "This feature adds functionality to ..."
label: Description
description: Describe the feature you're requesting.
placeholder: This feature adds functionality to ...
validations:
required: true

- type: textarea
attributes:
label: "Motivation"
description: "Describe additional context such as examples or use cases helping in understanding the feature request."
placeholder: "This feature would be helpful because ... so that the following use case is addressed: ..."
label: Motivation
description: Describe additional context such as examples or use cases helping
in understanding the feature request.
placeholder: 'This feature would be helpful because ... so that the following
use case is addressed: ...'
validations:
required: true

- type: textarea
attributes:
label: "Proposed Solution (optional)"
description: "Sketch an implementation idea, possibly considering multiple approaches."
label: Proposed Solution (optional)
description: Sketch an implementation idea, possibly considering multiple approaches.
validations:
required: false
82 changes: 0 additions & 82 deletions .github/workflows/maven-release.yml

This file was deleted.

16 changes: 4 additions & 12 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,31 +1,23 @@
---
name: PR checks

on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
- unlocked

types: [opened, edited, synchronize, reopened, unlocked]
permissions:
contents: read

jobs:
check-conventional-commit:
name: Check commit messages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: "${{ github.event.pull_request.head.ref }}"
repository: "${{ github.event.pull_request.head.repo.full_name }}"
ref: ${{ github.event.pull_request.head.ref }}
repository: ${{ github.event.pull_request.head.repo.full_name }}
fetch-depth: 0
- uses: actions/setup-python@v5
with:
cache: "pip" # caching pip dependencies
cache: pip # caching pip dependencies
- run: pip install commitizen
- name: Check commit messages
run: cz check --rev-range origin/${GITHUB_BASE_REF}..
4 changes: 2 additions & 2 deletions .github/workflows/release-please.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: release-please
id: release
uses: google-github-actions/release-please-action@v4
uses: googleapis/release-please-action@v4
with:
release-type: maven
release-type: simple
default-branch: main
11 changes: 0 additions & 11 deletions .idea/codeStyles/Project.xml

This file was deleted.

5 changes: 0 additions & 5 deletions .idea/codeStyles/codeStyleConfig.xml

This file was deleted.

7 changes: 0 additions & 7 deletions .mvn/extensions.xml

This file was deleted.

2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Before you submit your Pull Request (PR) consider the following guidelines:
Note: The optional commit `-a` command line option will automatically "add" and "rm" edited files.

Note: The command line option `-S` generates a signed commit, which is required to make a contribution (See [Developer Certificate of Origin](./LICENSES/DCO.txt))

* Push your branch to GitHub:

```shell
Expand Down
53 changes: 0 additions & 53 deletions pom.xml

This file was deleted.

14 changes: 0 additions & 14 deletions src/main/resources/META-INF/MANIFEST.MF

This file was deleted.

0 comments on commit 242e0bd

Please sign in to comment.