Skip to content

Commit

Permalink
Merge pull request #78 from 2024FALL-SWPP/dev
Browse files Browse the repository at this point in the history
Version 1
  • Loading branch information
gyusang authored Nov 27, 2024
2 parents 38b930a + 678c854 commit ad7ad12
Show file tree
Hide file tree
Showing 650 changed files with 98,751 additions and 276 deletions.
37 changes: 37 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# PR Title [Descriptive title summarizing the change]

## Related Issue(s)

Link or reference any related issues or tickets.

## PR Description

[Provide a brief summary of the changes made.]

### Changes Included

- [ ] Added new feature(s)
- [ ] Fixed identified bug(s)
- [ ] Updated relevant documentation

### Screenshots (if UI changes were made)

Attach screenshots or GIFs of any visual changes. (Only for frontend-related changes)

### Notes for Reviewer

Any specific instructions or points to be considered by the reviewer.

---

## Reviewer Checklist

- [ ] Code is written in clean, maintainable, and idiomatic form.
- [ ] Manual testing has been performed to ensure the PR works as expected.
- [ ] Code review comments have been addressed or clarified.

---

## Additional Comments

Add any other comments or information that might be useful for the review process.
55 changes: 55 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
---
name: Lint

on: # yamllint disable-line rule:truthy
push: null
pull_request: null

permissions: {}

jobs:
build:
name: Lint
runs-on: ubuntu-latest

permissions:
contents: read
packages: read
# To report GitHub Actions status checks
statuses: write

steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# super-linter needs the full git history to get the
# list of files that changed across commits
fetch-depth: 0
token: ${{ secrets.SUPER_LINTER_TOKEN }}

- name: Super-linter
uses: super-linter/[email protected] # x-release-please-version
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
FIX_CSHARP: true
VALIDATE_JSCPD: false
FIX_MARKDOWN: true
FIX_MARKDOWN_PRETTIER: true
FIX_JSON_PRETTIER: true
FIX_YAML_PRETTIER: true
- name: Commit and push linting fixes
# Run only on:
# - Pull requests
# - Not on the default branch
if: >
github.event_name == 'pull_request' &&
github.ref_name != github.event.repository.default_branch
uses: stefanzweifel/git-auto-commit-action@v5
with:
# branch: ${{ github.event.pull_request.head.ref || github.head_ref || github.ref }}
commit_message: "chore: fix linting issues"
commit_user_name: super-linter
commit_user_email: [email protected]
commit_author: super-linter <[email protected]>
skip_checkout: true
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,9 @@ crashlytics-build.properties
# Temporary auto-generated Android Assets
/[Aa]ssets/[Ss]treamingAssets/aa.meta
/[Aa]ssets/[Ss]treamingAssets/aa/*

# DS_Store files
.DS_Store

# Blender backup files
*.blend1
8 changes: 8 additions & 0 deletions Assets/Animations.meta

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ad7ad12

Please sign in to comment.