Skip to content

Commit cdde4f9

Browse files
authored
chore(IDX): skip checks from dependabot (#88)
1 parent 9db3e73 commit cdde4f9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

reusable_workflows/repo_policies/bot_checks/check_bot_approved_files.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,11 @@ def main() -> None:
9090
env_vars = load_env_vars(REQUIRED_ENV_VARS)
9191
user = env_vars["USER"]
9292

93+
# For now skip checks from dependabot until we decide how to handle them
94+
if user == "dependabot[bot]":
95+
print("Skipping checks for dependabot.")
96+
return
97+
9398
is_bot = is_approved_bot(user)
9499

95100
if is_bot:

0 commit comments

Comments
 (0)