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 51a7a2c commit 27cbbdaCopy full SHA for 27cbbda
.github/workflows/build.yaml
@@ -13,9 +13,10 @@ jobs:
13
14
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs
15
if: >
16
- github.event_name == 'push'
+ github.repository_owner == 'OpenVK'
17
+ && (github.event_name == 'push'
18
|| (github.event_name == 'pull_request'
- && github.event.pull_request.head.repo.full_name != github.repository)
19
+ && github.event.pull_request.head.repo.full_name != github.repository))
20
21
steps:
22
- name: Set up QEMU
.github/workflows/codeberg-mirror.yml
@@ -5,6 +5,7 @@ on: push
5
jobs:
6
to_codeberg:
7
runs-on: ubuntu-latest
8
+ if: github.repository_owner == 'OpenVK'
9
10
- uses: actions/checkout@v2
11
with:
0 commit comments