benchmark stringclasses 1
value | task_name stringclasses 28
values | task_seed int64 0 19 | task_config stringlengths 2 514 | goal stringlengths 13 368 | start_url stringclasses 1
value | validation stringclasses 28
values |
|---|---|---|---|---|---|---|
gitlab | gitlab.add-followed-users-to-new-repo | 0 | {"account_list": "patou, egpast, westurner, jontutcher", "group_name": "crew", "visibility_level": "private", "project_name": "a temporary name until we come up with a better one"} | Follow patou, egpast, westurner, jontutcher on Gitlab and put them in a new group "crew". Create a new private project "a temporary name until we come up with a better one" afterwards and add them as collaborators | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.add-followed-users-to-new-repo | 1 | {"account_list": "sayakpaul, patrickhlauke", "group_name": "coding_friends", "visibility_level": "internal", "project_name": "akihat"} | Follow sayakpaul, patrickhlauke on Gitlab and put them in a new group "coding_friends". Create a new internal project "akihat" afterwards and add them as collaborators | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.add-followed-users-to-new-repo | 2 | {"account_list": "convexegg, dilipchandima, bmyun, DCMJY, linkmatrix, yjlou", "group_name": "webagent", "visibility_level": "public", "project_name": "DKJFKAJFOWEI"} | Follow convexegg, dilipchandima, bmyun, DCMJY, linkmatrix, yjlou on Gitlab and put them in a new group "webagent". Create a new public project "DKJFKAJFOWEI" afterwards and add them as collaborators | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.count-commits | 0 | {"date": "3/5/2023", "repo": "a11yproject", "user": "kilian"} | How many commits did kilian make to a11yproject on 3/5/2023? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 1 | {"date": "3/2", "repo": "a11yproject", "user": "Eric"} | How many commits did Eric make to a11yproject on 3/2? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 2 | {"date": "3/1/2023", "repo": "a11yproject", "user": "kilian"} | How many commits did kilian make to a11yproject on 3/1/2023? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 3 | {"date": "1/3/2023", "repo": "a11yproject", "user": "Eric and Kilian"} | How many commits did Eric and Kilian make to a11yproject on 1/3/2023? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 4 | {"date": "2/6/2023", "repo": "a11y-webring.club", "user": "Steven Woodson"} | How many commits did Steven Woodson make to a11y-webring.club on 2/6/2023? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 5 | {"date": "3/5/2023", "user": "kilian", "repo": "a11yproject/a11yproject.com"} | How many commits did kilian make on 3/5/2023 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 6 | {"date": "3/2", "user": "Eric", "repo": "a11yproject/a11yproject.com"} | How many commits did Eric make on 3/2 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 7 | {"date": "1/3/2023", "user": "Eric and Kilian", "repo": "a11yproject/a11yproject.com"} | How many commits did Eric and Kilian make on 1/3/2023 in the a11yproject/a11yproject.com repo in total? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 8 | {"period": "durning 2023", "user": "Kilian", "repo": "a11yproject/a11yproject.com"} | How many commits did Kilian make durning 2023 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 9 | {"period": "between Feb 2023 and May 2023", "user": "Eric", "repo": "a11yproject/a11yproject.com"} | How many commits did Eric make between Feb 2023 and May 2023 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 10 | {"period": "in 2023/1", "user": "Philip", "repo": "a11yproject/a11yproject.com"} | How many commits did Philip make in 2023/1 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 11 | {"period": "between 08/2022-09/2022", "user": "Anthony", "repo": "a11yproject/a11yproject.com"} | How many commits did Anthony make between 08/2022-09/2022 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 12 | {"period": "in April 2021", "user": "Nic", "repo": "a11yproject/a11yproject.com"} | How many commits did Nic make in April 2021 in the a11yproject/a11yproject.com repo? | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 13 | {"repo": "primer/design"} | Tell me who has made the most contributions, in terms of number of commits, to the primer/design project | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 14 | {"repo": "thoughtbot/administrate"} | Tell me who has made the most contributions, in terms of number of commits, to the thoughtbot/administrate project | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 15 | {"repo": "AndroidSlidingUpPanel"} | Tell me who has made the most contributions, in terms of number of commits, to the AndroidSlidingUpPanel project | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 16 | {"repo": "Pytorch GAN"} | Tell me who has made the most contributions, in terms of number of commits, to the Pytorch GAN project | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.count-commits | 17 | {"repo": "csvkit"} | Tell me who has made the most contributions, in terms of number of commits, to the csvkit project | import os
import re
from calendar import monthrange
from collections import Counter
from datetime import datetime, timedelta
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "ap... | |
gitlab | gitlab.create-group | 0 | {"group_members": "patou, egpast, westurner, jontutcher", "group_name": "n-lab"} | create a new group "n-lab" with members patou, egpast, westurner, jontutcher | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if not "group_name" in config or not "group_members" in config:
... | |
gitlab | gitlab.create-group | 1 | {"group_members": "JonasVautherin, dilipchandima, dawiss1337, bmyun, DCMJY", "group_name": "x-lab"} | create a new group "x-lab" with members JonasVautherin, dilipchandima, dawiss1337, bmyun, DCMJY | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if not "group_name" in config or not "group_members" in config:
... | |
gitlab | gitlab.create-group | 2 | {"group_members": "ASWATFZLLC, patrickhlauke, westurner, linkmatrix", "group_name": "crew"} | create a new group "crew" with members ASWATFZLLC, patrickhlauke, westurner, linkmatrix | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if not "group_name" in config or not "group_members" in config:
... | |
gitlab | gitlab.create-group | 3 | {"group_members": "qhduan, Agnes-U", "group_name": "coding_friends"} | create a new group "coding_friends" with members qhduan, Agnes-U | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if not "group_name" in config or not "group_members" in config:
... | |
gitlab | gitlab.create-group | 4 | {"group_members": "pandey2000, sayakpaul, sayakpaul", "group_name": "webagent"} | create a new group "webagent" with members pandey2000, sayakpaul, sayakpaul | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if not "group_name" in config or not "group_members" in config:
... | |
gitlab | gitlab.create-issue | 0 | {"assignee": "Roshanjossey", "text_end_date": "the end of 2030", "issue_title": "401 bad gateway", "project_name": "a11yproject.com", "namespace": "a11yproject"} | Create an issue in a11yproject/a11yproject.com repo with title "401 bad gateway". Assign the issue to Roshanjossey. Set due date to be the end of 2030 | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 1 | {"assignee": "Administrator", "text_end_date": "the beginning of Q2 2033", "issue_title": "Integrating LLMs for better prompts", "project_name": "empathy-prompts", "namespace": "byteblaze"} | Create an issue in byteblaze/empathy-prompts repo with title "Integrating LLMs for better prompts". Assign the issue to Administrator. Set due date to be the beginning of Q2 2033 | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 2 | {"assignee": "Administrator", "text_end_date": "July 18 2033", "issue_title": "add support for oh-my-zsh", "project_name": "dotfiles", "namespace": "byteblaze"} | Create an issue in byteblaze/dotfiles repo with title "add support for oh-my-zsh". Assign the issue to Administrator. Set due date to be July 18 2033 | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 3 | {"assignee": "myself", "text_end_date": "the end of Q1 2033", "issue_title": "Let's keep the project alive", "project_name": "cloud-to-butt", "namespace": "byteblaze"} | Create an issue in byteblaze/cloud-to-butt repo with title "Let's keep the project alive". Assign the issue to myself. Set due date to be the end of Q1 2033 | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 4 | {"assignee": "myself", "text_end_date": "2030-1-3", "issue_title": "404 for many URLs", "project_name": "a11yproject.com", "namespace": "a11yproject"} | Create an issue in a11yproject/a11yproject.com repo with title "404 for many URLs". Assign the issue to myself. Set due date to be 2030-1-3 | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 5 | {"issue": "report the issue of connection refused", "search_keywords": "connection refused", "namespace": "convexegg", "project_name": "ChatGPT"} | Open an issue to report the issue of connection refused in {{ChatGPT}}. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 6 | {"issue": "report experiencing \"OSError: [Errno 98] Address already in use\" during executions", "search_keywords": "OSError Address already in use", "namespace": "0ang3el", "project_name": "aem-hacker"} | Open an issue to report experiencing "OSError: [Errno 98] Address already in use" during executions in {{aem-hacker}}. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 7 | {"issue": "ask their plan on supporting Llama and other llama family models", "search_keywords": "support llama", "namespace": "root", "project_name": "metaseq"} | Open an issue to ask their plan on supporting Llama and other llama family models in {{metaseq}}. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 8 | {"issue": "ask their plans on adding Python 3.11 related resources", "search_keywords": "python 3.11", "namespace": "vinta", "project_name": "awesome-python"} | Open an issue to ask their plans on adding Python 3.11 related resources in {{awesome-python}}. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 9 | {"issue": "request adding support for MT theme editor", "search_keywords": "mt theme editor", "namespace": "byteblaze", "project_name": "a11y-syntax-highlighting"} | Open an issue to request adding support for MT theme editor in {{a11y-syntax-highlighting}}. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 10 | {"namespace": "byteblaze", "project_name": "solarized-prism-theme", "issue": "dark mode", "search_keywords": "dark mode"} | Open a new issue in repo byteblaze/solarized-prism-theme to discuss the implementation of dark mode | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 11 | {"namespace": "byteblaze", "project_name": "solarized-prism-theme", "issue": "default plugins for .zsh", "search_keywords": "default plugins zsh"} | Open a new issue in repo byteblaze/solarized-prism-theme to discuss the implementation of default plugins for .zsh | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-issue | 12 | {"issue": "asking about do they have any plan on supporting Webagent in the next quater", "search_keywords": "support webagent", "project_name": "checkstyle", "namespace": "checkstyle"} | Create an issue asking about do they have any plan on supporting Webagent in the next quater in checkstyle/checkstyle. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_usernam... | |
gitlab | gitlab.create-milestone | 0 | {"namespace": "primer", "project_name": "design", "text_end_date": "1/30/2023", "end_date": "2023-01-30", "event": "event of product launch", "search_keywords": "product launch", "text_start_date": "1/16/2023", "start_date": "2023-01-16"} | Create a milestone for the upcoming event of product launch starting on 1/16/2023 and ending on 1/30/2023 in repo primer/design | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if (
not "namespace" in config
or not "project_name... | |
gitlab | gitlab.create-milestone | 1 | {"namespace": "primer", "project_name": "design", "text_end_date": "in 20 days", "end_date": "2023-02-05", "event": "practice of collective code review", "search_keywords": "collective code review", "text_start_date": "1/16/2023", "start_date": "2023-01-16"} | Create a milestone for the upcoming practice of collective code review starting on 1/16/2023 and ending on in 20 days in repo primer/design | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if (
not "namespace" in config
or not "project_name... | |
gitlab | gitlab.create-milestone | 2 | {"namespace": "primer", "project_name": "design", "text_end_date": "in 20 days", "end_date": "2023-03-08", "event": "task of cleaning sensitive information", "search_keywords": "clean sensitive information", "text_start_date": "2/16/2023", "start_date": "2023-02-16"} | Create a milestone for the upcoming task of cleaning sensitive information starting on 2/16/2023 and ending on in 20 days in repo primer/design | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if (
not "namespace" in config
or not "project_name... | |
gitlab | gitlab.create-milestone | 3 | {"namespace": "byteblaze", "project_name": "dotfiles", "text_end_date": "March 30, 2044", "end_date": "2044-03-30", "event": "task of merging all branches to main", "search_keywords": "merge branch main", "text_start_date": "March 15, 2044", "start_date": "2044-03-15"} | Create a milestone for the upcoming task of merging all branches to main starting on March 15, 2044 and ending on March 30, 2044 in repo byteblaze/dotfiles | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if (
not "namespace" in config
or not "project_name... | |
gitlab | gitlab.create-milestone | 4 | {"namespace": "byteblaze", "project_name": "dotfiles", "text_end_date": "in 20 days", "end_date": "2044-05-21", "event": "task of adding a new branch for zsh comprehensive support", "search_keywords": "branch zsh support", "text_start_date": "5/1/2044", "start_date": "2044-05-01"} | Create a milestone for the upcoming task of adding a new branch for zsh comprehensive support starting on 5/1/2044 and ending on in 20 days in repo byteblaze/dotfiles | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
# Check whether we have the necessary information to validate
if (
not "namespace" in config
or not "project_name... | |
gitlab | gitlab.create-pr | 0 | {"namespace": "facebook", "project_name": "buck", "reviewer": "Meta", "source_branch": "dev", "target_branch": "main"} | Submit a request to merge dev branch into main branch for repo facebook/buck, assign Meta as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-pr | 1 | {"namespace": "primer", "project_name": "design", "source_branch": "dialog-component", "target_branch": "bump-doctocat", "reviewer": "primer"} | Submit a merge request in the primer/design repo for dialog-component branch to be merged into bump-doctocat branch, assign primer as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-pr | 2 | {"namespace": "a11yproject", "project_name": "a11yproject.com", "source_branch": "redesign", "target_branch": "main", "reviewer": "Roshan Jossy"} | Submit a merge request in the a11yproject/a11yproject.com repo for redesign branch to be merged into main branch, assign Roshan Jossy as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-pr | 3 | {"namespace": "a11yproject", "project_name": "a11yproject.com", "source_branch": "redesign", "target_branch": "markdown-figure-block", "reviewer": "myself"} | Submit a merge request in the a11yproject/a11yproject.com repo for redesign branch to be merged into markdown-figure-block branch, assign myself as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-pr | 4 | {"namespace": "primer", "project_name": "design", "source_branch": "debug-build-time", "target_branch": "dialog", "reviewer": "myself"} | Submit a merge request in the primer/design repo for debug-build-time branch to be merged into dialog branch, assign myself as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-pr | 5 | {"namespace": "a11yproject", "project_name": "a11yproject.com", "reviewer": "myself", "source_branch_nl": "the branch that adds color utility classes", "source_branch": "add-color-utility-classes", "target_branch": "redesign"} | Submit a merge request for the branch that adds color utility classes to be merged into redesign branch in repo a11yproject/a11yproject.com, assign myself as the reviewer | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.create-repo | 0 | {"project_name": "chatgpt_plugin"} | Set up a new, empty repository with the name chatgpt_plugin | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 1 | {"project_name": "awesome_llm_reading"} | Set up a new, empty repository with the name awesome_llm_reading | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 2 | {"project_name": "awesome_program_aided_reasoning"} | Set up a new, empty repository with the name awesome_program_aided_reasoning | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 3 | {"project_name": "webagent"} | Set up a new, empty repository with the name webagent | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 4 | {"project_name": "awesome_webagent"} | Set up a new, empty repository with the name awesome_webagent | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 5 | {"account_list": "Abishek, Vinta", "visibility_level": "private", "project_name": "planner"} | Create a new private project "planner" and add Abishek, Vinta as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 6 | {"account_list": "Abishek, Vinta", "visibility_level": "public", "project_name": "web_arena"} | Create a new public project "web_arena" and add Abishek, Vinta as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 7 | {"account_list": "primer", "visibility_level": "public", "project_name": "AutoAGI"} | Create a new public project "AutoAGI" and add primer as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 8 | {"account_list": "primer, convexegg, abishek", "visibility_level": "public", "project_name": "awesome-llms"} | Create a new public project "awesome-llms" and add primer, convexegg, abishek as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 9 | {"account_list": "primer, convexegg, abishek", "visibility_level": "private", "project_name": "llm_bulk_inference"} | Create a new private project "llm_bulk_inference" and add primer, convexegg, abishek as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 10 | {"account_list": "Abishek, Vinta", "project_name": "awesome_web_agents", "project_template": "blank", "visibility_level": "private"} | Start a private project awesome_web_agents with blank template and add Abishek, Vinta as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 11 | {"account_list": "primer, convexegg, abishek", "project_name": "web_agent_android_xl", "project_template": "Android", "visibility_level": "private"} | Start a private project web_agent_android_xl with Android template and add primer, convexegg, abishek as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 12 | {"account_list": "primer, convexegg, vinta", "project_name": "project_site", "project_template": "NodeJS", "visibility_level": "private"} | Start a private project project_site with NodeJS template and add primer, convexegg, vinta as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 13 | {"account_list": "Vinta Chen", "project_name": "agi_index", "project_template": "HTML", "visibility_level": "private"} | Start a private project agi_index with HTML template and add Vinta Chen as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 14 | {"account_list": "Rohan and Vinta", "project_name": "AGISite", "project_template": "JEKYLL", "visibility_level": "private"} | Start a private project AGISite with JEKYLL template and add Rohan and Vinta as members | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 15 | {"project_name": "web_agent", "project_template": "blank", "visibility_level": "private"} | Create a private blank repository called "web_agent" using the right template to speed up development. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 16 | {"project_name": "web_agent_android_xs", "project_template": "Android", "visibility_level": "private"} | Create a private Android repository called "web_agent_android_xs" using the right template to speed up development. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 17 | {"project_name": "web_agent_nodejs", "project_template": "NodeJS", "visibility_level": "private"} | Create a private NodeJS repository called "web_agent_nodejs" using the right template to speed up development. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 18 | {"project_name": "web_agent_index", "project_template": "HTML", "visibility_level": "private"} | Create a private HTML repository called "web_agent_index" using the right template to speed up development. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.create-repo | 19 | {"project_name": "11711_gitlab", "project_template": "JEKYLL", "visibility_level": "private"} | Create a private JEKYLL repository called "11711_gitlab" using the right template to speed up development. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _find_project(config... | |
gitlab | gitlab.follow-user | 0 | {"account_list": "convexegg, yjlou"} | Follow convexegg, yjlou on Gitlab | import unicodedata
from typing import Any, Dict, List
import requests
import json
import os
def _normalize(s):
"""Lowercase and strip diacritics for flexible matching."""
s = s.lower().strip()
# Decompose unicode characters, then remove combining marks (diacritics)
return "".join(
c for c in ... | |
gitlab | gitlab.follow-user | 1 | {"account_list": "Jakub Klinkovsky, Koushik, Vinta Chen"} | Follow Jakub Klinkovsky, Koushik, Vinta Chen on Gitlab | import unicodedata
from typing import Any, Dict, List
import requests
import json
import os
def _normalize(s):
"""Lowercase and strip diacritics for flexible matching."""
s = s.lower().strip()
# Decompose unicode characters, then remove combining marks (diacritics)
return "".join(
c for c in ... | |
gitlab | gitlab.follow-user | 2 | {"account_list": "Jakub K, ghost, Benoit Blanchon"} | Follow Jakub K, ghost, Benoit Blanchon on Gitlab | import unicodedata
from typing import Any, Dict, List
import requests
import json
import os
def _normalize(s):
"""Lowercase and strip diacritics for flexible matching."""
s = s.lower().strip()
# Decompose unicode characters, then remove combining marks (diacritics)
return "".join(
c for c in ... | |
gitlab | gitlab.follow-user | 3 | {"account_list": "ghost, R1kk3r, Abishek"} | Follow ghost, R1kk3r, Abishek on Gitlab | import unicodedata
from typing import Any, Dict, List
import requests
import json
import os
def _normalize(s):
"""Lowercase and strip diacritics for flexible matching."""
s = s.lower().strip()
# Decompose unicode characters, then remove combining marks (diacritics)
return "".join(
c for c in ... | |
gitlab | gitlab.follow-user | 4 | {"account_list": "Jakub Klinkovsky, convexegg, Vinta Chen, yjlou, Abishek S"} | Follow Jakub Klinkovsky, convexegg, Vinta Chen, yjlou, Abishek S on Gitlab | import unicodedata
from typing import Any, Dict, List
import requests
import json
import os
def _normalize(s):
"""Lowercase and strip diacritics for flexible matching."""
s = s.lower().strip()
# Decompose unicode characters, then remove combining marks (diacritics)
return "".join(
c for c in ... | |
gitlab | gitlab.fork-repo | 0 | {"repo": "2019-nCov", "search_keyword": "2019-nCov", "source_namespace": ""} | Fork 2019-nCov. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.fork-repo | 1 | {"repo": "the Pytorch GAN repo with most stars", "search_keyword": "PyTorch-GAN", "source_namespace": ""} | Fork the Pytorch GAN repo with most stars. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.fork-repo | 2 | {"repo": "ChatGPT", "search_keyword": "ChatGPT", "source_namespace": ""} | Fork ChatGPT. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.fork-repo | 3 | {"repo": "MetaSeq", "search_keyword": "metaseq", "source_namespace": ""} | Fork MetaSeq. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.fork-repo | 4 | {"repo": "all source repos from Akilesh Kannan", "search_keyword": "", "source_namespace": "aklsh"} | Fork all source repos from Akilesh Kannan. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.fork-repo | 5 | {"repo": "all repos from facebook", "search_keyword": "", "source_namespace": "facebook"} | Fork all repos from facebook. | import os
from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_current_user():... | |
gitlab | gitlab.get-and-update-info | 0 | {"status": "Busy", "url": "https://egg.tart.com", "description": "at least 20", "repos": "a11yproject.com, design"} | Set my status to Busy and change the homepage URL on my profile to https://egg.tart.com. Then can you tell me the full names of the repositories where I made contributions and they got at least 20 stars? | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _normalize_url(url):... | |
gitlab | gitlab.get-and-update-info | 1 | {"status": "Resting, please do not disturb", "url": "https://helloworld.xyz", "description": "the most", "repos": "a11y-syntax-highlighting, a11y-webring.club, accessible-html-content-patterns, ericwbailey.website, cloud-to-butt, dotfiles, timeit, solarized-prism-theme, gimmiethat.space, remove-board-movement-events-fr... | Set my status to Resting, please do not disturb and change the homepage URL on my profile to https://helloworld.xyz. Then can you tell me the full names of the repositories where I made contributions and they got the most stars? | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _normalize_url(url):... | |
gitlab | gitlab.get-and-update-info | 2 | {"status": "Out of Office", "url": "byteblaze.github.io", "description": "less than 5", "repos": "a11yproject.com, design"} | Set my status to Out of Office and change the homepage URL on my profile to byteblaze.github.io. Then can you tell me the full names of the repositories where I made contributions and they got less than 5 stars? | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _normalize_url(url):... | |
gitlab | gitlab.get-rss-token | 0 | {} | Get me my RSS feed token | import re
from typing import Any, Dict, List
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _get_toolkit_headers():
"""Headers ... | |
gitlab | gitlab.get-todo | 0 | {} | Check out my todos | import re
from typing import Any, Dict, List
import os
def validate(messages: List[Dict[str, str]], config: Dict[str, Any]) -> int:
if not messages:
raise ValueError("Messages cannot be empty")
content = messages[-1].get("content", "")
base_url = os.getenv("GITLAB_BASE_URL", "").rstrip("/")
... | |
gitlab | gitlab.invite-user | 0 | {"collaborator_account_list": "yjlou", "namespace": "byteblaze", "project_name": "solarized-prism-theme"} | Invite yjlou as collaborator to solarized-prism-theme | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 1 | {"name": "Abishek", "namespace": "byteblaze", "project_name": "dotfiles"} | Abishek wants to check my dotfile configurations. Please invite him to the repo as a guest. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 2 | {"name": "yjlou", "namespace": "byteblaze", "project_name": "dotfiles"} | yjlou wants to check my dotfile configurations. Please invite him to the repo as a guest. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 3 | {"name": "Koushik", "namespace": "byteblaze", "project_name": "dotfiles"} | Koushik wants to check my dotfile configurations. Please invite him to the repo as a guest. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 4 | {"name": "Jakub Klinkovsky", "namespace": "byteblaze", "project_name": "dotfiles"} | Jakub Klinkovsky wants to check my dotfile configurations. Please invite him to the repo as a guest. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 5 | {"name": "Vinta", "namespace": "byteblaze", "project_name": "dotfiles"} | Vinta wants to check my dotfile configurations. Please invite him to the repo as a guest. | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 6 | {"collaborator_account_list": "Jakub Klinkovsky and Benoit Blanchon", "display_repo": "gimmiethat.space", "namespace": "byteblaze", "project_name": "gimmiethat.space"} | Invite Jakub Klinkovsky and Benoit Blanchon as collaborator to gimmiethat.space repo | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 7 | {"collaborator_account_list": "Abishek and Vinta", "display_repo": "a11yproject.com", "namespace": "a11yproject", "project_name": "a11yproject.com"} | Invite Abishek and Vinta as collaborator to a11yproject.com repo | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 8 | {"collaborator_account_list": "Benoit and Abishek", "display_repo": "my HTML5 markup extention", "namespace": "byteblaze", "project_name": "accessible-html-content-patterns"} | Invite Benoit and Abishek as collaborator to my HTML5 markup extention repo | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 9 | {"collaborator_account_list": "Jakub K, Alex Dills, Alex Hutnik and Benoit Blanchon", "display_repo": "my time tracking tool project", "namespace": "byteblaze", "project_name": "timeit"} | Invite Jakub K, Alex Dills, Alex Hutnik and Benoit Blanchon as collaborator to my time tracking tool project repo | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 10 | {"namespace": "byteblaze", "project_name": "a11y-webring.club", "role": "developer", "user_list": "abisubramanya27, lahwaacz"} | Add the following users to repo byteblaze/a11y-webring.club as developer: abisubramanya27, lahwaacz | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 11 | {"namespace": "byteblaze", "project_name": "millennials-to-snake-people", "role": "reporter", "user_list": "yjlou, a11yproject"} | Add the following users to repo byteblaze/millennials-to-snake-people as reporter: yjlou, a11yproject | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 12 | {"namespace": "kkroening", "project_name": "ffmpeg-python", "role": "maintainer", "user_list": "yjlou, a11yproject"} | Add the following users to repo kkroening/ffmpeg-python as maintainer: yjlou, a11yproject | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... | |
gitlab | gitlab.invite-user | 13 | {"display_repo": "GitHub timeline item management extension", "namespace": "byteblaze", "project_name": "remove-board-movement-events-from-the-github-issue-timeline", "role": "maintainer", "user_list": "abisubramanya27, lahwaacz"} | Add the following users to my GitHub timeline item management extension as maintainer: abisubramanya27, lahwaacz | from typing import Any, Dict, List
from urllib.parse import quote
import requests
import json
import os
def _get_headers():
return {
"Content-Type": "application/json",
"Accept": "application/json",
**json.loads(os.getenv("GITLAB_EXTRA_HTTP_HEADERS", "{}")),
}
def _parse_user_list(val... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.