Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ updates:
- "docker"
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"

# Go dependencies (if go.mod exists)
Expand All @@ -85,4 +86,5 @@ updates:
- "golang"
commit-message:
prefix: "chore"
prefix-development: "chore"
include: "scope"
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@

<!-- Descreva os passos para testar as mudanças -->

1.

Check failure on line 59 in .github/pull_request_template.md

View workflow job for this annotation

GitHub Actions / Lint Markdown Files

Trailing spaces

.github/pull_request_template.md:59:3 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md
2.

Check failure on line 60 in .github/pull_request_template.md

View workflow job for this annotation

GitHub Actions / Lint Markdown Files

Trailing spaces

.github/pull_request_template.md:60:3 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md
3.

Check failure on line 61 in .github/pull_request_template.md

View workflow job for this annotation

GitHub Actions / Lint Markdown Files

Trailing spaces

.github/pull_request_template.md:61:3 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1] https://github.com/DavidAnson/markdownlint/blob/v0.34.0/doc/md009.md

## 📝 Notas Adicionais

Expand All @@ -68,4 +68,4 @@

<!-- @mencione revisores específicos, se houver -->

@
@reviewer-username
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
go-version: '1.21.x'

- name: Build
run: go build -v ./...
Expand Down
15 changes: 2 additions & 13 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,28 +23,17 @@ jobs:
name: Analyze Code
runs-on: ubuntu-latest

strategy:
fail-fast: false
matrix:
# Define languages to analyze
# Supported: 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift'
language: ['javascript', 'python']

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you want to specify queries, uncomment below
# queries: security-and-quality
# Languages are automatically detected based on repository contents
# Supported: 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby', 'swift'
Comment on lines 30 to +33
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The github/codeql-action/init@v3 step no longer provides a with.languages input. The CodeQL init action expects explicit languages to analyze, so this workflow will fail at runtime rather than auto-detecting. Consider adding a lightweight detection step that outputs a comma-separated language list (or skips the job entirely when none are found) and pass that value to init.

Copilot uses AI. Check for mistakes.

- name: Autobuild
uses: github/codeql-action/autobuild@v3

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
22 changes: 11 additions & 11 deletions docs/AUTOMATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,10 +96,10 @@ PR Opened

**What it does**:
- Scans code for security vulnerabilities
- Analyzes JavaScript and Python code
- Automatically detects and analyzes supported languages in the repository
- Reports findings to Security tab

**Languages**: JavaScript, Python (automatically detected)
**Languages**: Automatically detected (supports C++, C#, Go, Java, JavaScript, Python, Ruby, Swift)
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Within this doc, the CodeQL language description is now inconsistent: this section says languages are “automatically detected” and lists many languages, but later under Code Review Tools > CodeQL the doc still states “Languages: JavaScript, Python”. Update the later section (or consolidate to a single source of truth) so the document doesn’t contradict itself.

Suggested change
**Languages**: Automatically detected (supports C++, C#, Go, Java, JavaScript, Python, Ruby, Swift)
**Languages**: Automatically detected based on the CodeQL workflow configuration (currently JavaScript and Python)

Copilot uses AI. Check for mistakes.

**Permissions**: `actions: read`, `contents: read`, `security-events: write`

Expand All @@ -116,7 +116,7 @@ PR Opened
- `bugfix`: fix, bug, resolve, correct, patch, repair
- `documentation`: docs, documentation, readme, guide, comment
- `refactor`: refactor, cleanup, restructure, optimize, improve
- `dependencies`: dependency, dependencies, dependabot, upgrade
- `dependencies`: dependency, dependencies, dependabot, upgrade, update package
- `ci`: ci, workflow, github actions, pipeline, automation
- `security`: security, vulnerability, cve, exploit
- `breaking-change`: breaking change, breaking, major version
Expand Down Expand Up @@ -153,14 +153,14 @@ Applied by the auto-label workflow based on PR content:

| Label | Description | Keywords |
|-------|-------------|----------|
| `enhancement` | New features or improvements | feat, feature, add, implement |
| `bugfix` | Bug fixes | fix, bug, resolve, correct |
| `documentation` | Documentation changes | docs, documentation, readme |
| `refactor` | Code refactoring | refactor, cleanup, restructure |
| `dependencies` | Dependency updates | dependency, dependabot, upgrade |
| `ci` | CI/CD changes | ci, workflow, github actions |
| `security` | Security-related changes | security, vulnerability, cve |
| `breaking-change` | Breaking changes | breaking change, major version |
| `enhancement` | New features or improvements | feat, feature, add, implement, enhance, new |
| `bugfix` | Bug fixes | fix, bug, resolve, correct, patch, repair |
| `documentation` | Documentation changes | docs, documentation, readme, guide, comment |
| `refactor` | Code refactoring | refactor, cleanup, restructure, optimize, improve |
| `dependencies` | Dependency updates | dependency, dependencies, dependabot, upgrade, update package |
| `ci` | CI/CD changes | ci, workflow, github actions, pipeline, automation |
| `security` | Security-related changes | security, vulnerability, cve, exploit |
| `breaking-change` | Breaking changes | breaking change, breaking, major version |
| `size/XS` to `size/XL` | PR size indicator | Automatically calculated |

### Manual Labels
Expand Down
Loading