-
Notifications
You must be signed in to change notification settings - Fork 10
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 #170 from DSACMS/dev
Merge Dev into Main
- Loading branch information
Showing
51 changed files
with
2,980 additions
and
279 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,38 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Smartphone (please complete the following information):** | ||
- Device: [e.g. iPhone6] | ||
- OS: [e.g. iOS8.1] | ||
- Browser [e.g. stock browser, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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,20 @@ | ||
--- | ||
name: Feature request | ||
about: Suggest an idea for this project | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Is your feature request related to a problem? Please describe.** | ||
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] | ||
|
||
**Describe the solution you'd like** | ||
A clear and concise description of what you want to happen. | ||
|
||
**Describe alternatives you've considered** | ||
A clear and concise description of any alternative solutions or features you've considered. | ||
|
||
**Additional context** | ||
Add any other context or screenshots about the feature request here. |
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,42 @@ | ||
<!-- | ||
Thank you for sending the PR! We appreciate you spending the time to work on | ||
these changes. | ||
Help us understand your motivation by explaining why you decided to make this change. | ||
Happy contributing! | ||
- Comments should be formatted to a width no greater than 80 columns. | ||
- Files should be exempt of trailing spaces. | ||
- We adhere to a specific format for commit messages. Please write your commit | ||
messages along these guidelines. Please keep the line width no greater than 80 | ||
columns (You can use `fmt -n -p -w 80` to accomplish this). | ||
--> | ||
|
||
## module-name: One line description of your change (less than 72 characters) | ||
|
||
## Problem | ||
|
||
Explain the context and why you're making that change. What is the problem | ||
you're trying to solve? In some cases there is not a problem and this can be | ||
thought of being the motivation for your change. | ||
|
||
## Solution | ||
|
||
Describe the modifications you've done. | ||
|
||
## Result | ||
|
||
What will change as a result of your pull request? Note that sometimes this | ||
section is unnecessary because it is self-explanatory based on the solution. | ||
|
||
Some important notes regarding the summary line: | ||
|
||
* Describe what was done; not the result | ||
* Use the active voice | ||
* Use the present tense | ||
* Capitalize properly | ||
* Do not end in a period — this is a title/subject | ||
* Prefix the subject with its scope | ||
|
||
## Test Plan | ||
|
||
(Write your test plan here. If you changed any code, please provide us with | ||
clear instructions on how you verified your changes work.) |
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: "run-linting-checks" | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
jobs: | ||
resolve-repolinter-json: | ||
uses: DSACMS/repo-scaffolder/.github/workflows/extendJSONFile.yml@main | ||
with: | ||
url_to_json: 'https://raw.githubusercontent.com/DSACMS/repo-scaffolder/main/tier3/%7B%7Bcookiecutter.project_slug%7D%7D/repolinter.json' | ||
|
||
repolinter-checks: | ||
name: Tier 3 Checks | ||
needs: resolve-repolinter-json | ||
runs-on: ubuntu-latest | ||
env: | ||
RAW_JSON: ${{ needs.resolve-repolinter-json.outputs.raw-json }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- run: echo $RAW_JSON > repolinter.json | ||
- uses: newrelic/repolinter-action@v1 | ||
with: | ||
# A path to the JSON/YAML Repolinter ruleset to use, relative to the workflow | ||
# working directory (i.e. under `$GITHUB_WORKSPACE`). | ||
# | ||
# This option is mutually exclusive with config_url. If this option and | ||
# config_url are not specified, Repolinter's default ruleset will be used. | ||
config_file: 'repolinter.json' | ||
|
||
# Where repolinter-action should put the linting results. There are two | ||
# options available: | ||
# * "exit-code": repolinter-action will print the lint output to the console | ||
# and set the exit code to result.passed. This output type is most useful for | ||
# PR status checks. | ||
# * "issue": repolinter-action will create a GitHub issue on the current | ||
# repository with the repolinter output and always exit 0. See the README for | ||
# more details on issue outputting behavior. This output type is ideal for | ||
# non-intrusive notification. | ||
# | ||
# Default: "exit-code" | ||
output_type: 'issue' | ||
|
||
# The title to use for the issue created by repolinter-action. This title | ||
# should indicate the purpose of the issue, as well as that it was created by | ||
# a bot. | ||
# | ||
# This option will be ignored if output_type != "issue". | ||
# | ||
# Default: "[Repolinter] Open Source Policy Issues" | ||
output_name: '[Repolinter] Tier 3 Repository Hygiene Issue' | ||
|
||
# The default token is the repolinter token for the DSACMS org | ||
# You can change it if needed. | ||
token: ${{ secrets.REPOLINTER_AUTO_TOKEN }} |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.