Skip to content

Commit cf1cbe4

Browse files
authored
Merge pull request #7 from simatic-ax/update
Update
2 parents fd6611e + 32ac881 commit cf1cbe4

12 files changed

+876
-859
lines changed

.github/workflows/build-library.yml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
on: push
2+
3+
jobs:
4+
test-apax-lib:
5+
uses: simatic-ax/actions/.github/workflows/apax-build-test.yml@stable
6+
secrets:
7+
APAX_TOKEN: ${{ secrets.APAX_TOKEN }}
8+
SIMATIC_AX_TOKEN: ${{ secrets.DEPLOY_KEY }}
9+
with:
10+
LOGIN_SIMATIC_AX: true

.github/workflows/lint-repo.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
on: push
2+
jobs:
3+
lint-repo-and-markdown:
4+
uses: simatic-ax/actions/.github/workflows/check-repository.yml@stable

.github/workflows/release-library.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
on:
2+
push:
3+
# Pattern matched against refs/tags
4+
tags:
5+
- '*'
6+
7+
jobs:
8+
release-apax-lib:
9+
uses: simatic-ax/actions/.github/workflows/apax-publish.yml@stable
10+
secrets:
11+
APAX_TOKEN: ${{ secrets.APAX_TOKEN }}
12+
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
13+
APAX_SIGNKEY: ${{ secrets.APAX_SIGNKEY }}
14+
15+
with:
16+
VERSION: ${{ github.ref_name }}

.markdownlint.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# markdownlint YAML configuration
2+
---
3+
4+
# Default state for all rules
5+
default: true
6+
7+
# ignored rules
8+
line-length: false
9+
no-inline-html: false
10+
first-line-h1: false
11+
no-emphasis-as-header: false
12+
MD024:
13+
allow_different_nesting: true
14+
siblings_only: true

CODEOWNERS

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# These owners will be the default owners for everything in the repo.
2+
# Unless a later match takes precedence, the listed user will be
3+
# requested for review when someone opens a pull request.
4+
# * @michijudge @sjuergen

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,19 @@ Simatic.Ax.Mocks;
2424
|OnDelayMockWithTwoTimers | output = TRUE |
2525

2626

27+
## Markdownlint-cli
28+
29+
This workspace will be checked by the [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) (there is also documented ho to install the tool) tool in the CI workflow automatically.
30+
To avoid, that the CI workflow fails because of the markdown linter, you can check all markdown files locally by running the markdownlint with:
31+
32+
```sh
33+
markdownlint **/*.md --fix
34+
```
35+
2736
## Contribution
37+
2838
Thanks for your interest in contributing. Anybody is free to report bugs, unclear documentation, and other problems regarding this repository in the Issues section or, even better, is free to propose any changes to this repository using Merge Requests.
2939

30-
## Licence and Legal information
40+
## License and Legal information
3141

3242
Please read the [Legal information](LICENSE.md)
33-

0 commit comments

Comments
 (0)