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 bfe5067 commit e562482Copy full SHA for e562482
.github/workflows/build.yml
@@ -1,14 +1,15 @@
1
name: Build Package
2
3
on:
4
- push:
5
- branches: [ "master", "feature/cli-installer-v2" ] # should change once we have a stable branch
6
- pull_request:
7
- branches: [ "master", "feature/cli-installer-v2" ]
+ workflow_run:
+ workflows: [Run Tests]
+ types:
+ - completed
8
9
jobs:
10
build:
11
runs-on: ubuntu-latest # Choose an appropriate runner
12
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
13
steps:
14
- uses: actions/checkout@v3
15
.github/workflows/tests.yaml
@@ -1,4 +1,4 @@
-name: Tests
+name: Run Tests
on: [push]
0 commit comments