Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @ff4j/ff4j-docs-champions
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Description

<!-- Description about this pull request -->

Closes : <!-- refer the github issue. Ex: #084-->

# Checklist:

- [ ] I have performed a self-review of my documentation changes
- [ ] I have checked the preview site of PR and confirm the changes
- [ ] My commits follow [conventional commit message guidelines](https://www.conventionalcommits.org/en/v1.0.0/)
22 changes: 22 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
version: 2
updates:
- package-ecosystem: uv
Copy link

Copilot AI Jan 18, 2026

Choose a reason for hiding this comment

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

The "uv" package ecosystem is not a valid Dependabot package ecosystem. According to GitHub's Dependabot documentation, valid package ecosystems include "pip" for Python dependencies, "docker", "npm", "github-actions", etc., but "uv" is not recognized. If this is intended to manage Python dependencies, it should be changed to "pip". Additionally, the "directory" field is missing - it's required for all package ecosystems except "github-actions".

Suggested change
- package-ecosystem: uv
- package-ecosystem: pip
directory: "/"

Copilot uses AI. Check for mistakes.
schedule:
interval: daily
time: "23:30"
open-pull-requests-limit: 10
commit-message:
prefix: "build: "
Copy link

Copilot AI Jan 18, 2026

Choose a reason for hiding this comment

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

There is inconsistent indentation in the "commit-message" field. Line 8 has 8 spaces while line 9 has 12 spaces. The "prefix" field should be indented at the same level as other nested fields (typically 6 spaces to align with "schedule", "open-pull-requests-limit", etc.).

Suggested change
prefix: "build: "
prefix: "build: "

Copilot uses AI. Check for mistakes.
labels:
- dependencies
- automated
- package-ecosystem: github-actions
directory: "/.github/"
schedule:
interval: weekly
open-pull-requests-limit: 5
commit-message:
prefix: "ci: "
labels:
- ci
- automated