mirror of
https://github.com/agentscope-ai/ReMe.git
synced 2026-08-28 05:25:04 +00:00
* refactor(search): replace time module with datetime for timestamp generation - Removed unused time import - Added static method _now_ts using datetime.timestamp - Updated clock parameter to use _now_ts method instead of time.time - Maintained same timestamp precision and functionality * test(http): add tests for HTTP client display formatting - Add test for default metadata hiding behavior in CLI output - Add test for metadata display when show_metadata is enabled - Verify _format_for_display method correctly formats response text - Test both success case and metadata inclusion scenarios * chore(build): remove longmemeval from gitignore - Removed longmemeval directory from gitignore list - Kept evaluation and datasets directories in ignore list - Updated gitignore configuration for proper version control
36 lines
942 B
YAML
36 lines
942 B
YAML
name: PR Title Check
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [main, master, dev, develop]
|
|
types: [opened, edited, synchronize, reopened]
|
|
|
|
jobs:
|
|
check-pr-title:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Check PR title format
|
|
uses: amannn/action-semantic-pull-request@v6.1.1
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
types: |
|
|
feat
|
|
fix
|
|
docs
|
|
ci
|
|
refactor
|
|
test
|
|
chore
|
|
perf
|
|
style
|
|
build
|
|
revert
|
|
requireScope: false
|
|
scopePattern: ^[a-z0-9_-]+$
|
|
scopePatternError: |
|
|
The scope must contain only lowercase letters, numbers, hyphens, and underscores.
|
|
Example: "feat(memory): add redis cache support"
|
|
validateSingleCommit: false
|
|
ignoreLabels: |
|
|
ignore-semantic-pull-request
|