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 610329c commit 5952b27Copy full SHA for 5952b27
.github/workflows/android.yml
@@ -1,11 +1,16 @@
1
name: Android CI
2
3
-on: [ push ]
+on:
4
+ workflow_dispatch:
5
+ workflow_run:
6
+ workflows: [ 'Code format check' ]
7
+ types: [ completed ]
8
9
jobs:
10
build:
11
12
runs-on: ubuntu-latest
13
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
14
15
steps:
16
- uses: actions/checkout@v4
.github/workflows/code-formatting.yml
@@ -1,9 +1,9 @@
-name: Code formatting
+name: Code format check
+on: [ workflow_dispatch, push ]
- build:
+ check-format:
0 commit comments