We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a99f12 commit e99813cCopy full SHA for e99813c
1 file changed
.github/workflows/ci.yml
@@ -100,7 +100,7 @@ jobs:
100
101
- name: Publish benchmark results
102
uses: benchmark-action/github-action-benchmark@v1
103
- if: github.event_name != 'pull_request'
+ if: github.event_name == 'pull_request' && github.repository == 'ixc/python-edtf'
104
with:
105
tool: 'pytest'
106
auto-push: true
@@ -112,6 +112,7 @@ jobs:
112
summary-always: true
113
114
- name: Comment on benchmark results without publishing
115
+ if: github.event_name != 'pull_request' || github.repository != 'ixc/python-edtf'
116
117
118
0 commit comments