diff --git a/.github/workflows/branch-protection-sentinel.yml b/.github/workflows/branch-protection-sentinel.yml index a71441ab1..20a4c2c11 100644 --- a/.github/workflows/branch-protection-sentinel.yml +++ b/.github/workflows/branch-protection-sentinel.yml @@ -31,7 +31,7 @@ jobs: # Padroes aceitos: # 1. Squash merge: termina em "(#NNN)" # 2. Merge commit: comeca com "Merge pull request #NNN" - # 3. Bot oficial: github-actions[bot], dependabot[bot], lovable-dev[bot] + # 3. Bot oficial: github-actions[bot], dependabot[bot], lovable-dev[bot], gpt-engineer-app[bot] # 4. Tag de release: comeca com "chore(release):" if echo "$MSG" | head -1 | grep -qE '\(#[0-9]+\)$'; then @@ -45,7 +45,7 @@ jobs: fi case "$AUTHOR" in - "github-actions[bot]"|"dependabot[bot]"|"lovable-dev[bot]"|"renovate[bot]") + "github-actions[bot]"|"dependabot[bot]"|"lovable-dev[bot]"|"gpt-engineer-app[bot]"|"renovate[bot]") echo "OK: bot oficial ($AUTHOR)" >> $GITHUB_STEP_SUMMARY exit 0 ;;