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 63e534b commit ee8539fCopy full SHA for ee8539f
.github/workflows/test.yml
@@ -4,10 +4,18 @@ on:
4
push:
5
branches: [main]
6
pull_request:
7
+ types: [opened, reopened, synchronize]
8
+ # Adding this to trigger the required CI jobs for PRs created by GitHub Actions jobs
9
+ workflow_run:
10
+ workflows: ['Update Translated Docs', 'Changesets Release'] # these must be the exact names of workflows
11
+ types: [completed]
12
13
jobs:
14
test:
15
runs-on: ubuntu-latest
16
+ if: >
17
+ github.event_name == 'pull_request' ||
18
+ (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success')
19
env:
20
NODE_OPTIONS: "--max_old_space_size=4096"
21
strategy:
0 commit comments