Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
preinboth committed Mar 21, 2022
0 parents commit ae16d66
Show file tree
Hide file tree
Showing 20 changed files with 1,216 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Auto detect text files and perform LF normalization
* text=auto
55 changes: 55 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
name: "🐛 Bug Report"
description: We broke something, again
title: "[Bug]: "
labels: ["bug"]
assignees:
- preinboth
body:
- type: markdown
attributes:
value: |
**Thanks for reporting an issue!** Please make sure you read our [issue guidelines](github.repository/blob/master/.github/CONTRIBUTING.md) first, then fill out the fields below.
- type: textarea
id: bug-steps
attributes:
label: What are the steps to reproduce this issue?
placeholder: |
1. Make new project
2. Run `make package`
3. …
4. See error
validations:
required: true

- type: textarea
id: bug-description
attributes:
label: What happens?
description: A clear and concise description of what the bug is.
validations:
required: true

- type: textarea
id: bug-expectation
attributes:
label: What were you expecting to happen?
description: A clear and concise description of what was supposed to happen.
validations:
required: true

- type: textarea
id: bug-logs
attributes:
label: Paste any relevant logs, error output, etc.
description: |
Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
(If it’s long, please paste to https://gist.github.com/ and insert the link here.)
render: shell

- type: textarea
id: bug-context
attributes:
label: Additional context
description: Add any other context you can provide about the problem here.

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
blank_issues_enabled: false
39 changes: 39 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# https://github.com/babel/babel/blob/main/.github/ISSUE_TEMPLATE/feature_request.yml
name: "🚀 Feature Request"
description: "I have a specific suggestion!"
labels: ["enhancement"]
assignees:
- preinboth
body:
- type: markdown
attributes:
value: |
**Thanks for taking the time to suggest a new feature!** Please make sure you read our [issue guidelines](github.repository/blob/master/.github/CONTRIBUTING.md) first, then fill out the fields below.
- type: textarea
attributes:
label: What problem are you trying to solve?
description: A concise description of what the problem is.
placeholder: "e.g. I want to …"
validations:
required: true

- type: textarea
attributes:
label: "Describe the solution you’d like"
validations:
required: true

- type: textarea
attributes:
label: "Describe any alternatives you’ve considered"
description: |
Can Theos already do this, but in a less convenient way?
Can you do this using other tools?
Do other popular build systems, such as Xcode, have a feature for this?
- type: textarea
attributes:
label: "Documentation, Adoption, Migration Strategy"
description: |
If you can, explain how users will be able to use this and how it might be documented. Maybe a mock-up?
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/question.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "❓ Question"
description: You have a question
title: "[Question]: "
labels: ["question"]
assignees:
- preinboth
body:
- type: textarea
id: question-description
attributes:
label: What is the question?
description:
validations:
required: true
42 changes: 42 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
## Status
**READY/IN DEVELOPMENT/HOLD**

## Migrations
YES | NO

## Description
A few sentences describing the overall goals of the pull request's commits.

## Related PRs
List related PRs against other branches:

branch | PR
------ | ------
other_pr_production | [link]()
other_pr_master | [link]()


## Todos
- [ ] Tests
- [ ] Documentation


## Deploy Notes
Notes regarding deployment the contained body of work. These should note any
db migrations, etc.

## Steps to Test or Reproduce
Outline the steps to test or reproduce the PR here.

```sh
git pull --prune
git checkout <feature_branch>
bundle; script/server
```

1.

## Impacted Areas in Application
List general components of the application that this PR will affect:

*
22 changes: 22 additions & 0 deletions .github/workflows/abaplint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: abaplint

on:
push:
paths: '/src/**.abap'
pull_request:
paths: '/src/**.abap'

jobs:
lint:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: abaplint
uses: abaplint/actions-abaplint@main
# GITHUB_TOKEN in forked repositories is read-only
# https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request
if: ${{ github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
28 changes: 28 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Documentation

on:
push:
branches: [ master ]

jobs:
documentation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup PHP
uses: shivammathur/[email protected]
with:
php-version: 7.4
extensions: mbstring, dom, intl
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Generate documentation
run: vendor/bin/daux generate --themes=themes
- name: Deploy same repository 🚀
uses: JamesIves/[email protected]
with:
folder: "static"
branch: gh-pages

2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/.project
/.idea/
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2021 Peter Reinboth

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
22 changes: 22 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

![Software License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square)
![ABAP Version](https://img.shields.io/badge/ABAP%20-7.50-brightgreen)
![GitHub last commit](https://img.shields.io/github/last-commit/abapTools/abapTmpl)
![GitHub commit activity](https://img.shields.io/github/commit-activity/m/abapTools/abapTmpl)
![GitHub issues](https://img.shields.io/github/issues/abapTools/abapTmpl)
![GitHub contributors](https://img.shields.io/github/contributors/abapTools/abapTmpl)
![GitHub Sponsors](https://img.shields.io/github/sponsors/abapTools)

![abapLint Workflow Status](https://img.shields.io/github/workflow/status/abapTools/abapTmpl/abaplint?label=abaplint)
![Documentation Workflow Status](https://img.shields.io/github/workflow/status/abapTools/abapTmpl/Documentation?label=Documentation)


## abapTmpl
Template repository for abap projects



### Features

- abapLint
- Doku via DAUX.io
Loading

0 comments on commit ae16d66

Please sign in to comment.