-
-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into api-jwt-test
- Loading branch information
Showing
14 changed files
with
243 additions
and
14 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,13 @@ | ||
version = 1 | ||
|
||
[[analyzers]] | ||
name = "shell" | ||
|
||
[[analyzers]] | ||
name = "javascript" | ||
|
||
[[analyzers]] | ||
name = "python" | ||
|
||
[analyzers.meta] | ||
runtime_version = "3.x.x" |
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,67 @@ | ||
# Basic issue types | ||
bug: | ||
- '(bug|fix|error|issue|crash|problem|failure)' | ||
enhancement: | ||
- '(feature|enhancement|improvement|request|idea)' | ||
documentation: | ||
- '(doc|docs|documentation|typo|spelling|grammar)' | ||
|
||
# Severity and priority | ||
critical: | ||
- '(critical|urgent|emergency|severe)' | ||
high-priority: | ||
- '(high priority|important|significant)' | ||
low-priority: | ||
- '(low priority|minor|trivial)' | ||
|
||
# Component or area | ||
frontend: | ||
- '(frontend|ui|ux|user interface|css|html)' | ||
backend: | ||
- '(backend|server|database|api)' | ||
performance: | ||
- '(performance|speed|optimization|memory|cpu)' | ||
security: | ||
- '(security|vulnerability|exploit|auth|authentication)' | ||
|
||
# Community and contribution | ||
"good first issue": | ||
- '(good first issue|beginner friendly|easy)' | ||
"help wanted": | ||
- '(help wanted|looking for help|assistance needed)' | ||
discussion: | ||
- '(discussion|question|clarification|opinion)' | ||
|
||
# Project management | ||
blocked: | ||
- '(blocked|blocker|dependency)' | ||
"in progress": | ||
- '(in progress|working on it|started)' | ||
|
||
# Type of change | ||
"breaking change": | ||
- '(breaking change|backwards incompatible)' | ||
maintenance: | ||
- '(maintenance|cleanup|refactor|technical debt)' | ||
|
||
# Specific technologies (adjust based on your project) | ||
javascript: | ||
- '(javascript|js|ecmascript)' | ||
python: | ||
- '(python|py|pip)' | ||
react: | ||
- '(react|jsx|component)' | ||
|
||
# Testing and quality | ||
test: | ||
- '(test|testing|unit test|integration test)' | ||
qa: | ||
- '(qa|quality assurance|manual testing)' | ||
|
||
# Platforms | ||
windows: | ||
- '(windows|win|microsoft)' | ||
mac: | ||
- '(mac|macos|apple)' | ||
linux: | ||
- '(linux|ubuntu|debian|fedora)' |
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,58 @@ | ||
# Add 'documentation' label to any changes in documentation files | ||
documentation: | ||
- '**/*.md' | ||
- 'docs/**/*' | ||
|
||
# Add 'bug' label to any bug fix | ||
bug: | ||
- '**/*bug*' | ||
- '**/*fix*' | ||
|
||
# Add 'enhancement' label to any feature or improvement | ||
enhancement: | ||
- '**/*feature*' | ||
- '**/*improve*' | ||
- '**/*enhance*' | ||
|
||
# Add 'dependencies' label to any changes in dependency files | ||
dependencies: | ||
- 'package.json' | ||
- 'package-lock.json' | ||
- 'yarn.lock' | ||
- '**/requirements.txt' | ||
- '**/Gemfile' | ||
- '**/Gemfile.lock' | ||
|
||
# Add 'tests' label to any changes in test files | ||
tests: | ||
- 'tests/**/*' | ||
- '**/*test*' | ||
- '**/*spec*' | ||
|
||
# Add 'ci' label to any changes in CI configuration files | ||
ci: | ||
- '.github/workflows/*' | ||
- '.travis.yml' | ||
- '.circleci/*' | ||
|
||
# Add 'security' label to any changes in security-related files | ||
security: | ||
- 'SECURITY.md' | ||
- '**/security/**/*' | ||
|
||
# Add 'config' label to any changes in configuration files | ||
config: | ||
- '**/*.config.js' | ||
- '**/*.json' | ||
- '.eslintrc*' | ||
- '.prettier*' | ||
- '.editorconfig' | ||
|
||
# Add 'core' label to any changes in the src or lib directories | ||
core: | ||
- 'src/**/*' | ||
- 'lib/**/*' | ||
|
||
# Add 'help wanted' label to any issue or PR | ||
'help wanted': | ||
- '**/*' |
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,39 @@ | ||
# Dependency Review Action | ||
# | ||
# This Action will scan dependency manifest files that change as part of a Pull Request, | ||
# surfacing known-vulnerable versions of the packages declared or updated in the PR. | ||
# Once installed, if the workflow run is marked as required, PRs introducing known-vulnerable | ||
# packages will be blocked from merging. | ||
# | ||
# Source repository: https://github.com/actions/dependency-review-action | ||
# Public documentation: https://docs.github.com/en/code-security/supply-chain-security/understanding-your-software-supply-chain/about-dependency-review#dependency-review-enforcement | ||
name: 'Dependency review' | ||
on: | ||
pull_request: | ||
branches: [ "main" ] | ||
|
||
# If using a dependency submission action in this workflow this permission will need to be set to: | ||
# | ||
# permissions: | ||
# contents: write | ||
# | ||
# https://docs.github.com/en/enterprise-cloud@latest/code-security/supply-chain-security/understanding-your-software-supply-chain/using-the-dependency-submission-api | ||
permissions: | ||
contents: read | ||
# Write permissions for pull-requests are required for using the `comment-summary-in-pr` option, comment out if you aren't using this option | ||
pull-requests: write | ||
|
||
jobs: | ||
dependency-review: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 'Checkout repository' | ||
uses: actions/checkout@v4 | ||
- name: 'Dependency Review' | ||
uses: actions/dependency-review-action@v4 | ||
# Commonly enabled options, see https://github.com/actions/dependency-review-action#configuration-options for all available options. | ||
with: | ||
comment-summary-in-pr: always | ||
# fail-on-severity: moderate | ||
# deny-licenses: GPL-1.0-or-later, LGPL-2.0-or-later | ||
# retry-on-snapshot-warnings: 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: "Issue and PR Labeler" | ||
on: | ||
issues: | ||
types: [opened, edited, reopened] | ||
pull_request_target: | ||
types: [opened, edited] | ||
|
||
permissions: | ||
issues: write | ||
pull-requests: write | ||
contents: read | ||
|
||
jobs: | ||
triage-issues: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'issues' | ||
steps: | ||
- uses: github/issue-labeler@v3.4 | ||
with: | ||
configuration-path: .github/issue-labeler.yml | ||
enable-versioned-regex: 0 | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
label-pr: | ||
runs-on: ubuntu-latest | ||
if: github.event_name == 'pull_request_target' | ||
steps: | ||
- uses: actions/labeler@v4 | ||
with: | ||
repo-token: "${{ secrets.GITHUB_TOKEN }}" | ||
configuration-path: .github/labeler.yml |
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
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
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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