René's URL Explorer Experiment


Title: Feature request: manipulate project issue status · Issue #3295 · python-gitlab/python-gitlab · GitHub

Open Graph Title: Feature request: manipulate project issue status · Issue #3295 · python-gitlab/python-gitlab

X Title: Feature request: manipulate project issue status · Issue #3295 · python-gitlab/python-gitlab

Description: Description of the problem, including code/CLI snippet My team is currently moving to tracking issues using the issue status introduced in Gitlab 18.2: https://about.gitlab.com/releases/2025/07/17/gitlab-18-2-released/#custom-workflow-st...

Open Graph Description: Description of the problem, including code/CLI snippet My team is currently moving to tracking issues using the issue status introduced in Gitlab 18.2: https://about.gitlab.com/releases/2025/07/17/...

X Description: Description of the problem, including code/CLI snippet My team is currently moving to tracking issues using the issue status introduced in Gitlab 18.2: https://about.gitlab.com/releases/2025/07/17/...

Opengraph URL: https://github.com/python-gitlab/python-gitlab/issues/3295

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"Feature request: manipulate project issue status","articleBody":"## Description of the problem, including code/CLI snippet\nMy team is currently moving to tracking issues using the issue status introduced in Gitlab 18.2:\nhttps://about.gitlab.com/releases/2025/07/17/gitlab-18-2-released/#custom-workflow-statuses-for-issues-and-tasks\n\nMy company uses this library to automate opening gitlab issues. Below is a snippet from said automation. I tried to get at what I could send in the create() method by dumping issue to JSON and got the following (company info redacted)\n\n```\n{\n  \"id\": 177073754,\n  \"iid\": ...,\n  \"project_id\": ...,\n  \"title\": \"...\",\n  \"description\": \"...\",\n  \"state\": \"opened\",\n  \"created_at\": \"2025-11-13T21:49:44.290Z\",\n  \"updated_at\": \"2025-11-13T21:49:44.290Z\",\n  \"closed_at\": null,\n  \"closed_by\": null,\n  \"labels\": [\n    ...\n  ],\n  \"milestone\": {\n    \"id\": 4775912,\n    \"iid\": ...,\n    \"project_id\": ...,\n    \"title\": \"Development\",\n    \"description\": \"Development (non-production) work that has yet to merge.\",\n    \"state\": \"active\",\n    \"created_at\": \"2021-10-01T18:45:11.056Z\",\n    \"updated_at\": \"2025-02-27T21:17:20.634Z\",\n    \"due_date\": \"2030-06-30\",\n    \"start_date\": \"2026-06-01\",\n    \"expired\": false,\n    \"web_url\": \"...\"\n  },\n  \"assignees\": [],\n  \"author\": {\n    \"id\": 31427160,\n    \"username\": \"project_..._bot_...\",\n    \"public_email\": null,\n    \"name\": \"...\",\n    \"state\": \"active\",\n    \"locked\": false,\n    \"avatar_url\": \"...\",\n    \"web_url\": \"...\"\n  },\n  \"type\": \"ISSUE\",\n  \"assignee\": null,\n  \"user_notes_count\": 0,\n  \"merge_requests_count\": 0,\n  \"upvotes\": 0,\n  \"downvotes\": 0,\n  \"due_date\": null,\n  \"confidential\": false,\n  \"discussion_locked\": null,\n  \"issue_type\": \"issue\",\n  \"web_url\": \"...\",\n  \"time_stats\": {\n    \"time_estimate\": 0,\n    \"total_time_spent\": 0,\n    \"human_time_estimate\": null,\n    \"human_total_time_spent\": null\n  },\n  \"task_completion_status\": {\n    \"count\": 1,\n    \"completed_count\": 0\n  },\n  \"weight\": 1,\n  \"blocking_issues_count\": 0,\n  \"has_tasks\": false,\n  \"_links\": {\n    \"self\": \"...\",\n    \"notes\": \"...\",\n    \"award_emoji\": \"...\",\n    \"project\": \"...\",\n    \"closed_as_duplicate_of\": null\n  },\n  \"references\": {\n    \"short\": \"...\",\n    \"relative\": \"...\",\n    \"full\": \"...\"\n  },\n  \"severity\": \"UNKNOWN\",\n  \"subscribed\": true,\n  \"moved_to_id\": null,\n  \"imported\": false,\n  \"imported_from\": \"none\",\n  \"service_desk_reply_to\": null,\n  \"epic_iid\": ...,\n  \"epic\": {\n    \"id\": ...,\n    \"iid\": ...,\n    \"title\": \"..\",\n    \"url\": \"\",\n    \"group_id\": ...\n  },\n  \"iteration\": null,\n  \"health_status\": null\n}\n```\n\nUnfortunately, I was not able to discern from this information how to set the status. Please let me know if it exists and this is a case of user error.\n\n## Expected Behavior\n```\nissue: ProjectIssue = jointsProject.issues.create(\n    {\n      'title': issueTitle,\n      'description': issueDescription,\n      'status': 'Approval Queue',                               # This is what I'd like to work, or some equivalent\n      'labels': [ ],\n      'milestone_id': developmentMilestoneID,  \n      'epic_iid': epicID,\n      'weight': 1,\n    }\n  )\n```\n\n\u003cimg width=\"301\" height=\"82\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/70707ae4-5841-43cb-8f21-fdc85ece42fe\" /\u003e\n\n## Actual Behavior\n\n\u003cimg width=\"311\" height=\"94\" alt=\"Image\" src=\"https://github.com/user-attachments/assets/a3aa35cd-0992-49c8-95ba-68f202ab4bc8\" /\u003e\n\n## Specifications\n\n  - python-gitlab version: 7.0.0\n  - Gitlab server version (or gitlab.com): GitLab Enterprise Edition 18.6.0-pre [b618d849058](https://gitlab.com/gitlab-org/gitlab/-/commits/b618d849058)\n","author":{"url":"https://github.com/totternessZB","@type":"Person","name":"totternessZB"},"datePublished":"2025-11-13T22:17:33.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":3},"url":"https://github.com/3295/python-gitlab/issues/3295"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:1576b9a6-713f-367b-c6d0-3330fc3430a2
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idC9F6:2F76D:244EBFB:2ED5293:6975692B
html-safe-nonce6fd240079fcaa8467fb7a57ba3cdc9972213f3f1b9ee24b9aee288a157c2a6ec
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJDOUY2OjJGNzZEOjI0NEVCRkI6MkVENTI5Mzo2OTc1NjkyQiIsInZpc2l0b3JfaWQiOiI3NTkxNzU2MDc4MDY2ODM0MzUiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmacabf20565eed85c46616d0dc6d531df07bf08d6c0778f17384b4a4646b272ee51
hovercard-subject-tagissue:3623034951
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/python-gitlab/python-gitlab/3295/issue_layout
twitter:imagehttps://opengraph.githubassets.com/06a09a930156ed0fd058847ffb77f587e868265e5491a6cf81c584f99a36aeb5/python-gitlab/python-gitlab/issues/3295
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/06a09a930156ed0fd058847ffb77f587e868265e5491a6cf81c584f99a36aeb5/python-gitlab/python-gitlab/issues/3295
og:image:altDescription of the problem, including code/CLI snippet My team is currently moving to tracking issues using the issue status introduced in Gitlab 18.2: https://about.gitlab.com/releases/2025/07/17/...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernametotternessZB
hostnamegithub.com
expected-hostnamegithub.com
None4a4bf5f4e28041a9d2e5c107d7d20b78b4294ba261cab243b28167c16a623a1f
turbo-cache-controlno-preview
go-importgithub.com/python-gitlab/python-gitlab git https://github.com/python-gitlab/python-gitlab.git
octolytics-dimension-user_id28886265
octolytics-dimension-user_loginpython-gitlab
octolytics-dimension-repository_id8077625
octolytics-dimension-repository_nwopython-gitlab/python-gitlab
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id8077625
octolytics-dimension-repository_network_root_nwopython-gitlab/python-gitlab
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release488b30e96dfd057fbbe44c6665ccbc030b729dde
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues/3295#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-gitlab%2Fpython-gitlab%2Fissues%2F3295
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-gitlab%2Fpython-gitlab%2Fissues%2F3295
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=python-gitlab%2Fpython-gitlab
Reloadhttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues/3295
Reloadhttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues/3295
Reloadhttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues/3295
python-gitlab https://patch-diff.githubusercontent.com/python-gitlab
python-gitlabhttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Fork 675 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Star 2.4k https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-gitlab%2Fpython-gitlab
Code https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab
Issues 26 https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues
Pull requests 11 https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/pulls
Discussions https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/discussions
Actions https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/actions
Projects 0 https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/projects
Security 0 https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/security
Insights https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/pulse
Code https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab
Issues https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues
Pull requests https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/pulls
Discussions https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/discussions
Actions https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/actions
Projects https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/projects
Security https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/security
Insights https://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/pulse
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-gitlab/python-gitlab/issues/3295
New issuehttps://patch-diff.githubusercontent.com/login?return_to=https://github.com/python-gitlab/python-gitlab/issues/3295
Feature request: manipulate project issue statushttps://patch-diff.githubusercontent.com/python-gitlab/python-gitlab/issues/3295#top
https://github.com/totternessZB
https://github.com/totternessZB
totternessZBhttps://github.com/totternessZB
on Nov 13, 2025https://github.com/python-gitlab/python-gitlab/issues/3295#issue-3623034951
https://about.gitlab.com/releases/2025/07/17/gitlab-18-2-released/#custom-workflow-statuses-for-issues-and-taskshttps://about.gitlab.com/releases/2025/07/17/gitlab-18-2-released/#custom-workflow-statuses-for-issues-and-tasks
https://private-user-images.githubusercontent.com/217634203/514123199-70707ae4-5841-43cb-8f21-fdc85ece42fe.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjkzMDI2MTUsIm5iZiI6MTc2OTMwMjMxNSwicGF0aCI6Ii8yMTc2MzQyMDMvNTE0MTIzMTk5LTcwNzA3YWU0LTU4NDEtNDNjYi04ZjIxLWZkYzg1ZWNlNDJmZS5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyNVQwMDUxNTVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT05ZjMyMzAyNWVjZGRjZjk3ZDg4NDdhYTVhZGMxMTBkODkxOGFmZjRjOTIzOWMyYmFmZGRiNjY3OTg4YzI0NTUxJlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.Lrbuuz9nQoZ08hvqZiMgxhJ91vRDg-EwTdcFoGbvkHM
https://private-user-images.githubusercontent.com/217634203/514122972-a3aa35cd-0992-49c8-95ba-68f202ab4bc8.png?jwt=eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJpc3MiOiJnaXRodWIuY29tIiwiYXVkIjoicmF3LmdpdGh1YnVzZXJjb250ZW50LmNvbSIsImtleSI6ImtleTUiLCJleHAiOjE3NjkzMDI2MTUsIm5iZiI6MTc2OTMwMjMxNSwicGF0aCI6Ii8yMTc2MzQyMDMvNTE0MTIyOTcyLWEzYWEzNWNkLTA5OTItNDljOC05NWJhLTY4ZjIwMmFiNGJjOC5wbmc_WC1BbXotQWxnb3JpdGhtPUFXUzQtSE1BQy1TSEEyNTYmWC1BbXotQ3JlZGVudGlhbD1BS0lBVkNPRFlMU0E1M1BRSzRaQSUyRjIwMjYwMTI1JTJGdXMtZWFzdC0xJTJGczMlMkZhd3M0X3JlcXVlc3QmWC1BbXotRGF0ZT0yMDI2MDEyNVQwMDUxNTVaJlgtQW16LUV4cGlyZXM9MzAwJlgtQW16LVNpZ25hdHVyZT0xYjdiMmY5NmZkYzRmYzJhOTY2YzRiYjllZjMwYWI1MDI3NzAzMTMxOGRlNTQyMDkzNmM1YTZjMTI0YjBiMmY4JlgtQW16LVNpZ25lZEhlYWRlcnM9aG9zdCJ9.WyAusn_fjYZUtO-VLt6N3fyFpo3qBKOHhK6zuUXZeGY
b618d849058https://gitlab.com/gitlab-org/gitlab/-/commits/b618d849058
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.