Skip to content

Commit

Permalink
feat: initial commit
Browse files Browse the repository at this point in the history
closes GH-1
  • Loading branch information
21CSM committed Sep 8, 2024
0 parents commit 14ac232
Show file tree
Hide file tree
Showing 9 changed files with 804 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
36 changes: 36 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-report.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Bug Report
description: File a bug report.
title: "[Bug]: "
labels: ["bug"]
assignees:
- 21CSM
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Also tell us, what did you expect to happen?
placeholder: Tell us what you see!
value: "A bug happened!"
validations:
required: true
- type: dropdown
id: browsers
attributes:
label: What browsers are you seeing the problem on?
multiple: true
options:
- Firefox
- Chrome
- Safari
- Microsoft Edge
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks.
render: shell
8 changes: 8 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
blank_issues_enabled: false
contact_links:
- name: Ars Antiqua Dicussions
url: https://github.com/21CSM/ars-antiqua/discussions
about: For general questions and discussions.
- name: Ars Antiqua Wiki
url: https://github.com/21CSM/ars-antiqua/wiki
about: Wiki pages that contain useful documentation.
41 changes: 41 additions & 0 deletions .github/ISSUE_TEMPLATE/feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Feature Request
description: Request a new feature.
title: "As a X, I would like Y, so that I can Z"
labels: ["feat"]
assignees:
- 21CSM
body:
- type: textarea
id: user-story
attributes:
label: User Story
description: Please replace the placeholders with the relevant details both here and in the issue title.
placeholder: As a X, I would like Y, so that I can Z.
validations:
required: true
- type: textarea
id: context
attributes:
label: Context
description: Why do you want this feature?
placeholder: "This feature would enable..."
validations:
required: true
- type: textarea
id: additional-context
attributes:
label: Additional Context
description: Relevant links, issues, PRs, or documentation regarding this feature request. (Optional)
placeholder: "Refer to #1"
validations:
required: false
- type: textarea
id: acceptance-criteria
attributes:
label: Acceptance Criteria
description: What would should happen to satisfy this feature request? Please add as a checklist.
placeholder: "- [ ] Should do X
- [ ] Should do Y
- [ ] Should do Z"
validations:
required: true
20 changes: 20 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
### Description

<!-- Summarize your changes in one or two sentences -->

### Context

<!-- Why are you making these changes? -->

### Additional context

<!-- Link to release notes, vendor docs, bug trackers, source control, or other places providing more context -->

### Related issues and pull requests

<!-- If this fully resolves a GitHub issue, use "fixes #123" -->
<!-- Highlight related pull requests using "relates to #123" -->
<!-- If another pull request should be merged first, use "**depends on:** #123" -->


<!-- After submitting, go to the "Checks" tab of your PR for the build status -->
18 changes: 18 additions & 0 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: GitHub Actions Demo
run-name: ${{ github.actor }} is testing out GitHub Actions 🚀
on: [push]
jobs:
Explore-GitHub-Actions:
runs-on: ubuntu-latest
steps:
- run: echo "🎉 The job was automatically triggered by a ${{ github.event_name }} event."
- run: echo "🐧 This job is now running on a ${{ runner.os }} server hosted by GitHub!"
- run: echo "🔎 The name of your branch is ${{ github.ref }} and your repository is ${{ github.repository }}."
- name: Check out repository code
uses: actions/checkout@v4
- run: echo "💡 The ${{ github.repository }} repository has been cloned to the runner."
- run: echo "🖥️ The workflow is now ready to test your code on the runner."
- name: List files in the repository
run: |
ls ${{ github.workspace }}
- run: echo "🍏 This job's status is ${{ job.status }}."
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# macOS
.DS_Store
Loading

0 comments on commit 14ac232

Please sign in to comment.