File tree Expand file tree Collapse file tree 5 files changed +5
-5
lines changed
Expand file tree Collapse file tree 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ permissions:
1515
1616jobs :
1717 push :
18- if : ${{ github.repository_owner == 'CubeCoders' }}
18+ if : ${{ github.repository_owner == 'CubeCoders' && github.ref == 'refs/heads/master' }}
1919 name : ' amp:${{ matrix.base }}'
2020 runs-on : ubuntu-latest
2121 strategy :
Original file line number Diff line number Diff line change 3838
3939 build_and_push :
4040 needs : [check_changes]
41- if : ${{ github.repository_owner == 'CubeCoders' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_java == 'true') || github.event_name == 'workflow_dispatch' ) }}
41+ if : ${{ github.repository_owner == 'CubeCoders' && github.ref == 'refs/heads/master' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_java == 'true') || github.event_name == 'workflow_dispatch' ) }}
4242 name : ' amp:java-${{ matrix.java }}'
4343 runs-on : ubuntu-latest
4444 strategy :
Original file line number Diff line number Diff line change 3838
3939 build_and_push :
4040 needs : [check_changes]
41- if : ${{ github.repository_owner == 'CubeCoders' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_mono == 'true') || github.event_name == 'workflow_dispatch' ) }}
41+ if : ${{ github.repository_owner == 'CubeCoders' && github.ref == 'refs/heads/master' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_mono == 'true') || github.event_name == 'workflow_dispatch' ) }}
4242 name : ' amp:mono-${{ matrix.mono }}'
4343 runs-on : ubuntu-latest
4444 strategy :
Original file line number Diff line number Diff line change 4040
4141 build_and_push :
4242 needs : [check_changes]
43- if : ${{ github.repository_owner == 'CubeCoders' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_python == 'true') || github.event_name == 'workflow_dispatch' ) }}
43+ if : ${{ github.repository_owner == 'CubeCoders' && github.ref == 'refs/heads/master' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_python == 'true') || github.event_name == 'workflow_dispatch' ) }}
4444 name : ' amp:python-${{ matrix.python }}'
4545 runs-on : ubuntu-latest
4646 strategy :
Original file line number Diff line number Diff line change 4040
4141 build_wine_common :
4242 needs : [check_changes]
43- if : ${{ github.repository_owner == 'CubeCoders' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_wine == 'true') || github.event_name == 'workflow_dispatch' ) }}
43+ if : ${{ github.repository_owner == 'CubeCoders' && github.ref == 'refs/heads/master' && ( (github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success') || (github.event_name == 'push' && needs.check_changes.outputs.only_wine == 'true') || github.event_name == 'workflow_dispatch' ) }}
4444 name : ' amp:wine-common'
4545 runs-on : ubuntu-latest
4646 strategy :
You can’t perform that action at this time.
0 commit comments