Skip to content

Commit e9010e7

Browse files
committed
Add triggers to run workflows on pr ready for review
1 parent 1311be6 commit e9010e7

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

.github/workflows/lint.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ on: # yamllint disable-line rule:truthy
66
- "main"
77
pull_request:
88
branches: ["*"]
9+
types:
10+
# NOTE: these are the defaults
11+
- opened
12+
- synchronize
13+
- reopened
14+
# NOTE: we add this to let the conversion from draft trigger the workflows
15+
- ready_for_review
916
jobs:
1017
lint:
1118
# Uses pre-commit to run all checks

.github/workflows/test.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ on: # yamllint disable-line rule:truthy
66
- "main"
77
pull_request:
88
branches: ["*"]
9+
types:
10+
# NOTE: these are the defaults
11+
- opened
12+
- synchronize
13+
- reopened
14+
# NOTE: we add this to let the conversion from draft trigger the workflows
15+
- ready_for_review
916
jobs:
1017
lint:
1118
runs-on: "ubuntu-latest"

examples/bulk-import/BulkImport/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
using Grpc.Net.Client;
99
using Grpc.Core;
1010

11-
var TOKEN = "sometoken";
11+
var TOKEN = "something";
1212

1313
var TOTAL_RELATIONSHIPS_TO_WRITE = 1000;
1414
var RELATIONSHIPS_PER_TRANSACTION = 100;

0 commit comments

Comments
 (0)