I have a workflow that automatically creates PRs and it needs to bypass the rules that require commits to be signed. I have looked at the Terraform docs for this and a bypass list looks like this:
bypass_actors {
actor_id = 13473
actor_type = "Integration"
bypass_mode = "always" }
and is placed before the rules block.
actor_type
can be:
actor_type
(String) The type of actor that can bypass a ruleset. Can be one of:RepositoryRole
,Team
,Integration
,OrganizationAdmin
Is it possible to bypass the GitHub Actions bot?