Skip to content

Commit

Permalink
chore(IDX): skip checks from dependabot (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
cgundy authored Dec 10, 2024
1 parent 9db3e73 commit cdde4f9
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,11 @@ def main() -> None:
env_vars = load_env_vars(REQUIRED_ENV_VARS)
user = env_vars["USER"]

# For now skip checks from dependabot until we decide how to handle them
if user == "dependabot[bot]":
print("Skipping checks for dependabot.")
return

is_bot = is_approved_bot(user)

if is_bot:
Expand Down

0 comments on commit cdde4f9

Please sign in to comment.