Skip to content

Commit

Permalink
Drop committer check
Browse files Browse the repository at this point in the history
Committer is always GitHub
  • Loading branch information
sethvargo committed Feb 19, 2024
1 parent 3638632 commit 93b35b7
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions .github/actions/create-release/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,6 @@ runs:
core.setFailed(`Commit author is not ${expectedEmail}, got ${commitResult.data.commit.author.email}`);
return;
}
if (commitResult.data.commit.committer.email !== expectedEmail) {
core.setFailed(`Commiter is not ${expectedEmail}, got ${commitResult.data.commit.committer.email}`);
return;
}
// Ensure the commit message matches the expected regular
// expression. Part of this is guarded by the conditional
Expand Down

0 comments on commit 93b35b7

Please sign in to comment.