File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ ---
Original file line number Diff line number Diff line change @@ -170,15 +170,15 @@ jobs:
170
170
- name : Find ChangeSet in PR
171
171
uses : peter-evans/find-comment@v2
172
172
id : fc
173
- # Skip if author is github-bot from celo-org or only md files changed
174
- if : github.event_name == 'pull_request' && github.event.pull_request.user.type != 'Bot' && steps.changes.outputs.others == 'true'
173
+ # Skip if only md files changed
174
+ if : github.event_name == 'pull_request' && steps.changes.outputs.others == 'true'
175
175
with :
176
176
issue-number : ${{ github.event.pull_request.number }}
177
177
body-includes : Changeset detected
178
178
comment-author : changeset-bot[bot]
179
179
- name : Fail if Changeset commit not found
180
- # Skip if author is github-bot from celo-org or only md files changed
181
- if : github.event_name == 'pull_request' && github.event.pull_request.user.type != 'Bot' && steps.changes.outputs.others == 'true'
180
+ # Skip if only md files changed
181
+ if : github.event_name == 'pull_request' && steps.changes.outputs.others == 'true'
182
182
run : |
183
183
if ${{ steps.fc.outputs.comment-id == 0 }}; then
184
184
echo "Error: No Changeset Found. You create an empty changeset with 'yarn cs add --empty'" && exit 1
You can’t perform that action at this time.
0 commit comments