尽管从 github 接收到 webhook,但未触发 CodeMagic 自动构建

CodeMagic Automatic build is not triggered though it receives the webhook from github

虽然它从 github 接收到 webhook,但未触发自动构建。任何输入都会有所帮助。

codemagic.yml 片段

ionic-capacitor-android-app-qa:
    name: tulip-fp
    environment:
      node: latest
    triggering:
      events:
        - tag
      branch_patterns:
        - pattern: “uat”
          include: true
          source: true
      tag_patterns:
        - pattern: “*”
          include: true
....

近期交付:

我使用过#codemagic,这里是解决方案 -

  1. 将“uat”更改为 'uat'。基本上在模式中使用单引号
  2. 还要确保在 GitHub 的 WebHook 配置中,选中“推送”触发器。
ionic-capacitor-android-app-qa:
    name: tulip-fp
    environment:
      node: latest
    triggering:
      events:
        - tag
        - push
      branch_patterns:
        - pattern: 'uat'
          include: true
          source: true
      tag_patterns:
        - pattern: '*'
          include: true