We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 58bc92f commit 3bc60a3Copy full SHA for 3bc60a3
.github/workflows/api_format.yaml
@@ -12,12 +12,11 @@ jobs:
12
name: Format API PR
13
runs-on: ubuntu-latest
14
if: |
15
- github.event.pull_request.merged == true
16
- && contains(github.event.pull_request.labels.*.name, 'api-format')
17
- && (
18
- (github.event.action == 'labeled' && github.event.label.name == 'api-format')
19
- || (github.event.action == 'closed')
20
- )
+ github.event.action == 'labeled'
+ && github.event.label.name == 'api-format'
+ && github.event.pull_request.draft == false
+
21
steps:
22
- name: Retrieve Credentials
23
id: import-secrets
0 commit comments