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 6a1ec8f commit 1d4d60cCopy full SHA for 1d4d60c
.github/workflows/block_replay.yml
@@ -3,15 +3,11 @@ name: Block replay test
3
on:
4
push:
5
branches: [ master ]
6
- workflow_run:
7
- workflows: [Go lint and test]
8
- types: [completed]
9
- workflow_dispatch:
10
11
jobs:
12
replay:
13
runs-on: self-hosted
14
- if: ${{ github.event.workflow_run.conclusion == 'success' }}
+ if: github.event.type == 'push' && github.event.ref == 'refs/head/master'
15
steps:
16
- uses: actions/checkout@v2
17
- name: Set up Go
0 commit comments