Skip to content

Commit

Permalink
Open tagbot triger issues for testitem repos
Browse files Browse the repository at this point in the history
  • Loading branch information
davidanthoff committed Jul 22, 2024
1 parent 24eae8b commit b3a28bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TagBot/TagBot.jl
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function tagbot_file(repo; issue_comments=false)
f.typ == "file" || continue
file = GH.file(repo, f.path; auth=AUTH[])
contents = String(base64decode(file.content))
if occursin("JuliaRegistries/TagBot", contents)
if occursin("JuliaRegistries/TagBot", contents) || occursin("julia-vscode/testitem-workflow/.github/workflows/juliaci.yml", contents)
issue_comments && !occursin("issue_comment", contents) && continue
return f.path, contents
end
Expand Down

0 comments on commit b3a28bc

Please sign in to comment.