-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #78 from 2024FALL-SWPP/dev
Version 1
- Loading branch information
Showing
650 changed files
with
98,751 additions
and
276 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.