Skip to content

Commit a0e7620

Browse files
committed
Merge branch 'master' into update-from-template-merged
2 parents 59a4d94 + 6bb6686 commit a0e7620

File tree

120 files changed

+1857
-206
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

120 files changed

+1857
-206
lines changed

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ body:
1515
attributes:
1616
label: "Checklist"
1717
options:
18-
- label: "I am able to reproduce the bug with the [latest version](https://github.com/xdev-software/template-placeholder/releases/latest)"
18+
- label: "I am able to reproduce the bug with the [latest version](https://github.com/xdev-software/commit-cards-docs/releases/latest)"
1919
required: true
20-
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/template-placeholder/issues) or [closed](https://github.com/xdev-software/template-placeholder/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
20+
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/commit-cards-docs/issues) or [closed](https://github.com/xdev-software/commit-cards-docs/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
2121
required: true
2222
- label: "I have taken the time to fill in all the required details. I understand that the bug report will be dismissed otherwise."
2323
required: true

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ body:
1313
attributes:
1414
label: "Checklist"
1515
options:
16-
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/template-placeholder/issues) or [closed](https://github.com/xdev-software/template-placeholder/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
16+
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/commit-cards-docs/issues) or [closed](https://github.com/xdev-software/commit-cards-docs/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
1717
required: true
1818
- label: "I have taken the time to fill in all the required details. I understand that the feature request will be dismissed otherwise."
1919
required: true

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ body:
1212
attributes:
1313
label: "Checklist"
1414
options:
15-
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/template-placeholder/issues) or [closed](https://github.com/xdev-software/template-placeholder/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
15+
- label: "I made sure that there are *no existing issues* - [open](https://github.com/xdev-software/commit-cards-docs/issues) or [closed](https://github.com/xdev-software/commit-cards-docs/issues?q=is%3Aissue+is%3Aclosed) - which I could contribute my information to."
1616
required: true
1717
- label: "I have taken the time to fill in all the required details. I understand that the question will be dismissed otherwise."
1818
required: true
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Deploy to Pages
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
workflow_dispatch:
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
contents: write
13+
steps:
14+
- uses: actions/checkout@v5
15+
16+
- name: Run build in Docker
17+
run: |
18+
docker run --rm -v ${PWD}:/antora -e CI=true antora/antora antora-playbook.yml
19+
20+
- name: Deploy to Github pages
21+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
22+
with:
23+
github_token: ${{ secrets.GITHUB_TOKEN }}
24+
publish_dir: ./build/site
25+
force_orphan: true

.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Antora build output
2+
build/
3+
.cache/
4+
5+
# Node.js dependencies (if installed locally)
6+
node_modules/
7+
package-lock.json
8+
npm-debug.log
9+
yarn.lock
10+
pnpm-lock.yaml
11+
12+
# Logs
13+
*.log
14+
15+
# OS junk
16+
.DS_Store
17+
18+
# Editor settings
19+
.vscode/
20+
.idea/
21+
*.swp
22+
*.swo
23+
24+
# Temporary files
25+
*.tmp
26+
*.bak
27+
*~

LICENSE

Lines changed: 0 additions & 201 deletions
This file was deleted.

README.md

Lines changed: 13 additions & 0 deletions

SECURITY.md

Lines changed: 1 addition & 1 deletion

antora-playbook.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
site:
2+
title: "XDEV Commit Cards"
3+
start_page: ROOT::index.adoc
4+
robots: allow
5+
6+
# see https://docs.antora.org/antora/2.3/playbook/configure-runtime/
7+
runtime:
8+
cache_dir: ./.cache/antora
9+
log:
10+
# use pretty even on CI
11+
format: pretty
12+
# set to info to get details from the Antora extensions
13+
level: info
14+
# Antora exits with a non-zero exit code if an error is logged -> https://docs.antora.org/antora/latest/playbook/runtime-log-failure-level
15+
failure_level: error
16+
17+
urls:
18+
latest_version_segment: latest
19+
20+
content:
21+
sources:
22+
- url: .
23+
start_path: .
24+
edit_url: https://github.com/xdev-software/commit-cards-docs/blob/{refname}/{path}
25+
26+
ui:
27+
bundle:
28+
url: https://gitlab.com/antora/antora-ui-default/-/jobs/artifacts/master/raw/build/ui-bundle.zip?job=bundle-stable
29+
snapshot: true
30+
supplemental_files: ./supplemental-ui

antora.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
name: ROOT
2+
title: XDEV Commit Cards
3+
version: v1.1
4+
nav:
5+
- modules/ROOT/nav.adoc

0 commit comments

Comments
 (0)