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 bf8856e commit 8bb71c3Copy full SHA for 8bb71c3
.github/workflows/app.yaml
@@ -1,15 +1,14 @@
1
name: 'App Build'
2
3
on:
4
- workflow_run:
5
- workflows: ['CI']
6
- types:
7
- - completed
+ pull_request:
+ push:
+ workflow_dispatch:
8
9
jobs:
10
build:
11
# Run only only the default branch and when the CI build was successful
12
- if: ${{ github.event.workflow_run.head_branch == github.event.repository.default_branch && github.event.workflow_run.conclusion == 'success' }}
+ # if: ${{ github.event.workflow_run.head_branch == github.event.repository.default_branch && github.event.workflow_run.conclusion == 'success' }}
13
runs-on: ubuntu-latest
14
steps:
15
- name: Checkout
0 commit comments