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 c774d02 commit 4a36d0dCopy full SHA for 4a36d0d
.github/workflows/arm-ci.yml
@@ -21,14 +21,15 @@ on:
21
- master
22
- r2.**
23
pull_request:
24
- types: [opened, synchronize, reopened]
+ types: [labeled, opened, synchronize, reopened]
25
branches:
26
27
28
29
jobs:
30
build:
31
- if: github.repository == 'tensorflow/tensorflow' # Don't do this in forks
+ # Don't do this in forks, and if labeled, only for 'kokoro:force-run'
32
+ if: github.repository == 'tensorflow/tensorflow' && (github.event.action != 'labeled' || (github.event.action == 'labeled' && github.event.label.name == 'kokoro:force-run'))
33
runs-on: [self-hosted, linux, ARM64]
34
strategy:
35
matrix:
0 commit comments