在 github 操作中读取推送的命令行参数

发布于 2025-01-09 19:57:24 字数 309 浏览 0 评论 0原文

我有一个在推送时执行的工作流程。有什么方法可以从推送命令中读取一些标志吗?因此,我将在本地计算机上像这样推送

git push origin my-branch --do-something

我想传递标志(如果可用)--do-something,因为它就像我的操作一样

...
      - name: Custom cmd
        run: yarn my:script:cmd --do-something # its passed here
...

I have a workflow which is executed on push. Is there any way to read some flags from the push command? So, I will push like this on my local computer

git push origin my-branch --do-something

I want to pass the flag (if available) --do-something as it is into my Action like

...
      - name: Custom cmd
        run: yarn my:script:cmd --do-something # its passed here
...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

叹梦 2025-01-16 19:57:24

恐怕这样是不可能的。

根据您确切需要触发的内容以及您想要传递的复杂程度,最常见的解决方案是:

  1. 基于标签触发工作流程并将选项编码到标签本身中 - 例如识别工作流程是否应通过使用正确的标签格式进行公开或内部构建。

  2. 在消息提交中传递信息。您可以在 GIT 消息中将命令编码为 [-do-something],然后在工作流程中解析它。

    例如:

    if: contains(github.event.commits[0].message, '[run_test_workflow]')
    
  3. 使用 GitHub 中的dispatch_workflow事件直接触发所需的工作流程,其中所有可能的输入(可能是最灵活的)都可以与提交后挂钩集成。

I am afraid it's not possible like this.

Depending on what you exactly need to trigger and how complicated things you want to pass, the most common solutions are:

  1. Trigger workflows based on tags and encode options into tags themselves - so for example to identify if workflow should make public or internal build, by having the proper format of tag.

  2. Pass information in message commit. You can encode the command as [-do-something] in GIT message and then parse it inside the workflow.

    For example:

    if: contains(github.event.commits[0].message, '[run_test_workflow]')
    
  3. Use dispatch_workflow event in GitHub to directly trigger desired workflow with all possible inputs - probably most flexible - could be integrated with post-commit hooks.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文