Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/lint-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check Markdown links

on:
pull_request:
types: [opened, edited, synchronize, reopened]
types: [opened, reopened, synchronize, ready_for_review]
paths:
- '**.md'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: E2E Test pipeline

on:
pull_request:
types: [opened, edited, synchronize, reopened, ready_for_review]
types: [opened, reopened, synchronize, ready_for_review]
branches:
- 'main'
- 'release-*'
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-gh-workflow-approve.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ name: Approve GH Workflows

on:
pull_request_target:
types: [opened, edited, reopened, synchronize]
# edited is needed here as this workflow checks for PR meta content
types: [opened, edited, reopened, synchronize, ready_for_review]

permissions: {}

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/pr-verifier.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ permissions: {}

on:
pull_request_target:
types: [opened, edited, reopened, synchronize]
# edited is needed here as this workflow checks for PR meta content
types: [opened, edited, reopened, synchronize, ready_for_review]

jobs:
verify:
Expand Down