gitlab_list_user_events
Track and filter a GitLab user's activity feed, including commits, comments, issues, and merge requests. Specify action type, target type, date range, and pagination for detailed event insights.
Instructions
Get a user's GitLab activity feed including commits, comments, issues, MRs, and more. Filter by action type and target type. Returns event details with timestamps and context.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | No | Filter events by action type (string). Options: 'created', 'updated', 'closed', 'reopened', 'pushed', 'commented', 'merged', 'joined', 'left', 'destroyed', 'expired' | |
after | No | Get events after this date (string, ISO 8601). Inclusive. Example: '2024-01-01' or '2024-01-01T00:00:00Z' | |
before | No | Get events before this date (string, ISO 8601). Inclusive. Example: '2024-12-31' or '2024-12-31T23:59:59Z' | |
page | No | Page number for pagination (integer, ≥1, default: 1) | |
per_page | No | Number of results per page (integer, 1-100, default: 20) | |
target_type | No | Filter events by target type (string). Options: 'Issue', 'MergeRequest', 'Milestone', 'Note', 'Project', 'Snippet', 'User' | |
username | Yes | GitLab username (string). The @username without the @ symbol. Case-sensitive |