gpt4 book ai didi

github - 如何配置 GitHub Actions 工作流,使其不在标签推送上运行?

转载 作者:行者123 更新时间:2023-12-05 01:05:17 25 4
gpt4 key购买 nike

我想配置一个 GitHub Actions 工作流,以便它在分支推送上运行,而不是在标签推送上运行。我认为这会起作用:

on:
push:
tags-ignore: ['**']

但是当我推送分支时,工作流也无法运行。有没有办法配置它,让它在分支推送而不是标签推送上运行?

最佳答案

不直观地,为了避免标签,您必须告诉它在所有分支上运行。见 its use in psycopg例如。


on:
push:
branches:
- "*"
pull_request:
schedule:
- cron: '48 6 * * *'

The docs say :

If you define only tags/tag-ignore or only branches/branches-ignore, the workflow won't run for events affecting the undefined Git ref.

关于github - 如何配置 GitHub Actions 工作流,使其不在标签推送上运行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/70743715/

25 4 0