[PR #290] [CLOSED] feature/fix: Remove .git from remote_url. Supports Azure DevOps. #27170

Closed
opened 2026-07-12 11:04:40 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/290
Author: @aretokas
Created: 2/4/2025
Status: Closed

Base: 1.17.0Head: azure-devops


📝 Commits (10+)

📊 Changes

240 files changed (+10991 additions, -7305 deletions)

View changed files

.dockerignore (+0 -14)
📝 .gitignore (+5 -3)
📝 Cargo.lock (+258 -205)
📝 Cargo.toml (+27 -29)
📝 bin/binaries.Dockerfile (+1 -1)
📝 bin/cli/Cargo.toml (+1 -0)
📝 bin/cli/src/exec.rs (+7 -0)
📝 bin/core/Cargo.toml (+1 -0)
📝 bin/core/aio.Dockerfile (+1 -1)
📝 bin/core/multi-arch.Dockerfile (+1 -1)
📝 bin/core/single-arch.Dockerfile (+1 -1)
📝 bin/core/src/alert/discord.rs (+6 -0)
📝 bin/core/src/alert/mod.rs (+51 -39)
📝 bin/core/src/alert/slack.rs (+16 -0)
📝 bin/core/src/api/auth.rs (+39 -43)
📝 bin/core/src/api/execute/action.rs (+37 -33)
bin/core/src/api/execute/alerter.rs (+73 -0)
📝 bin/core/src/api/execute/build.rs (+52 -44)
📝 bin/core/src/api/execute/deployment.rs (+96 -90)
📝 bin/core/src/api/execute/mod.rs (+85 -66)

...and 80 more files

📄 Description

Azure DevOps uses a non-standard URL, missing the .git on the end. This small change has been tested and is working.

  • Use a custom Provider of dev.azure.com, with a personal access token or credentials generated from the repository's clone button.
  • Pasting the full path in the Repo path field
    -- eg: <orgid>/<projectid>/_git/<reponame>

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/moghtech/komodo/pull/290 **Author:** [@aretokas](https://github.com/aretokas) **Created:** 2/4/2025 **Status:** ❌ Closed **Base:** `1.17.0` ← **Head:** `azure-devops` --- ### 📝 Commits (10+) - [`3878a34`](https://github.com/moghtech/komodo/commit/3878a34f191afc30a0ff95b7807b89db20a63219) resolver v3 - [`8a95073`](https://github.com/moghtech/komodo/commit/8a950739794cc57cf21d8f07a36cdd54ea80f8a2) fmt - [`bc08d6f`](https://github.com/moghtech/komodo/commit/bc08d6f54eaafe80358ece870e5f13705b1e9220) format - [`9e332d8`](https://github.com/moghtech/komodo/commit/9e332d874ec82a799389829fbb13a4bef40439fc) resource2 not really a benefit - [`f466899`](https://github.com/moghtech/komodo/commit/f466899fdca9b2e1f442eeed0310562ea728d460) axum to 0.8 - [`6665725`](https://github.com/moghtech/komodo/commit/6665725c1107c6becc7e91c2b0c473e83245240a) bump aws deps - [`40f4547`](https://github.com/moghtech/komodo/commit/40f454720d9f0f2251197fdaffaa778540a3fa38) just make it 1.17.0 - [`98f9ee5`](https://github.com/moghtech/komodo/commit/98f9ee50ed7ceb78426c425dd0955bb7d03cd1c7) clean up cors - [`f41ffaf`](https://github.com/moghtech/komodo/commit/f41ffafbd96ccc85453578cf7c639f8eaa7726ea) update default periphery configuration - [`6586c0d`](https://github.com/moghtech/komodo/commit/6586c0d04965a43039093147156923a4e1c8a533) provide default PERIPHERY_ROOT_DIRECTORY ### 📊 Changes **240 files changed** (+10991 additions, -7305 deletions) <details> <summary>View changed files</summary> ➖ `.dockerignore` (+0 -14) 📝 `.gitignore` (+5 -3) 📝 `Cargo.lock` (+258 -205) 📝 `Cargo.toml` (+27 -29) 📝 `bin/binaries.Dockerfile` (+1 -1) 📝 `bin/cli/Cargo.toml` (+1 -0) 📝 `bin/cli/src/exec.rs` (+7 -0) 📝 `bin/core/Cargo.toml` (+1 -0) 📝 `bin/core/aio.Dockerfile` (+1 -1) 📝 `bin/core/multi-arch.Dockerfile` (+1 -1) 📝 `bin/core/single-arch.Dockerfile` (+1 -1) 📝 `bin/core/src/alert/discord.rs` (+6 -0) 📝 `bin/core/src/alert/mod.rs` (+51 -39) 📝 `bin/core/src/alert/slack.rs` (+16 -0) 📝 `bin/core/src/api/auth.rs` (+39 -43) 📝 `bin/core/src/api/execute/action.rs` (+37 -33) ➕ `bin/core/src/api/execute/alerter.rs` (+73 -0) 📝 `bin/core/src/api/execute/build.rs` (+52 -44) 📝 `bin/core/src/api/execute/deployment.rs` (+96 -90) 📝 `bin/core/src/api/execute/mod.rs` (+85 -66) _...and 80 more files_ </details> ### 📄 Description Azure DevOps uses a non-standard URL, missing the .git on the end. This small change has been tested and is working. - Use a custom **Provider** of `dev.azure.com`, with a personal access token or credentials generated from the repository's clone button. - Pasting the full path in the **Repo** path field -- eg: `<orgid>/<projectid>/_git/<reponame>` --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-07-12 11:04:40 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#27170