Skip to content

Commit

Permalink
dependabot
Browse files Browse the repository at this point in the history
  • Loading branch information
SKairinos committed Jan 10, 2024
1 parent cd388ff commit 26b8f4d
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
# pylint: disable-next=line-too-long
CONTRIBUTING_FILE_NAME = "CONTRIBUTING.md"
CONTRIBUTORS_HEADER = "### 👨\u200d💻 Contributors 👩\u200d💻"
BOTS = {
"49699333+dependabot[bot]@users.noreply.github.com",
}


def get_inputs():
Expand Down Expand Up @@ -68,7 +71,9 @@ def assert_contributors(
for author in commit["authors"]
}

unsigned_contributors = contributors.difference(signed_contributors)
unsigned_contributors = contributors.difference(
signed_contributors.union(BOTS),
)

assert not unsigned_contributors, (
"The following contributors have not signed the agreement:"
Expand Down

0 comments on commit 26b8f4d

Please sign in to comment.