gpt4 book ai didi

GitHub 等同于 GitLab 审查应用程序

转载 作者:行者123 更新时间:2023-12-05 05:46:13 26 4
gpt4 key购买 nike

GitLab 有一个非常有用的功能,叫做 Review Apps这允许您从每个具有自己的子域并链接到 PR 页面上的 PR 启动 Web 应用程序的实例。我已经进行了一些搜索,但我没有在 GitHub 上看到任何类似的东西。

有没有办法在github上实现类似的东西?如果第三方服务可以与 github 集成,则很好。该应用程序有一个 docker compose 配置,因此它只会在 VM 上启动一个实例并稍后将其关闭。

最佳答案

最接近的是 Delivering deployments/Deployment API ,如来自 Sander Knape 的文章“使用 GitHub 操作和 GitHub 部署部署您的拉取请求”中所述.

https://sanderknape.com/images/github_deployments_finished.png

你可以看到它的workflow here .

但重点是:没有像 GitLab 那样直接集成的“审查”部署过程:您需要编写自己的 GitHub 工作流程才能在 GitHub 管理的基于 Azure 的服务器上进行部署,从:

  deploy:
runs-on: ubuntu-latest
needs: deploy-check
if: needs.deploy-check.outputs.triggered == 'true'
steps:
- name: get pull request ref
id: get_pull_request_ref
uses: octokit/request-action@v2.x
with:
route: GET /repos/:repository/pulls/:issue_id
repository: ${{ github.repository }}
issue_id: ${{ github.event.issue.number }}
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"

关于GitHub 等同于 GitLab 审查应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/71215821/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com