Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Prevent certain checks from running on forked PRs #16047

Open
wants to merge 27 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
3a70aef
ci: Add fork repo check in workflows
andrewb1269hg Oct 18, 2024
e2a981d
Apply suggestions from code review - Nathan's Input
andrewb1269hg Oct 22, 2024
9eab51e
Move the fork check to the wider scope of the whole workflow.
andrewb1269hg Oct 22, 2024
0bdaa5c
Remove workflow_dispatch fork checks, move if-check above with stanza…
andrewb1269hg Oct 22, 2024
a26f2b0
Move if-checks, remove workflow_dispatch fork check, update spacing b…
andrewb1269hg Oct 22, 2024
bae8069
Move if-check to appropriate location.
andrewb1269hg Oct 22, 2024
4d7e032
Move if-checks, remove fork check, update job spacing.
andrewb1269hg Oct 22, 2024
d549910
Move if-check, remove fork repo check, update spacing.
andrewb1269hg Oct 22, 2024
7efc493
Move if-check, remove fork repo check, and update spacing.
andrewb1269hg Oct 22, 2024
f6220a9
Remove workflow_dispatch forked repo checks.
andrewb1269hg Oct 22, 2024
b69759c
Remove workflow_dispatch fork checks, reformat long lines of if checks.
andrewb1269hg Oct 22, 2024
4e7124e
Restore if checks back to before PR. Remove fork checks from workflow…
andrewb1269hg Oct 22, 2024
f765b52
Remove a missed fork check, move if check, update spacing.
andrewb1269hg Oct 22, 2024
26800e9
Remove fork checks.
andrewb1269hg Oct 22, 2024
9c9f226
Remove fork check, move if check, update spacing.
andrewb1269hg Oct 22, 2024
e7e4bbd
Remove additional workflow_dispatch fork request checks.
andrewb1269hg Oct 23, 2024
24b6a27
Clean up spacing and move if-checks.
andrewb1269hg Oct 23, 2024
ea48eb6
Remove final workflow_dispatch fork checks.
andrewb1269hg Oct 23, 2024
27e5c29
Add a check back that was mistakenly removed, remove 2 additional wor…
andrewb1269hg Oct 23, 2024
d1af980
Add fork repo check to workflow_call file.
andrewb1269hg Oct 23, 2024
a0a300e
Add fork checks to several workflow_call files.
andrewb1269hg Oct 23, 2024
bba297b
Add remaining workflow_call fork repo checks. Added such that the who…
andrewb1269hg Oct 23, 2024
72e158e
Merge remote-tracking branch 'origin/develop' into 16004-prevent-cert…
andrewb1269hg Oct 29, 2024
c14b80e
Update .github/workflows/flow-pull-request-formatting.yaml
andrewb1269hg Nov 5, 2024
768919c
Merge branch 'develop' into 16004-prevent-certain-checks-from-running…
andrewb1269hg Nov 26, 2024
2ea5ec4
Move the fork repo check to disable the whole build artifact job.
andrewb1269hg Nov 26, 2024
1346368
Additional changes per Nathan's review
andrewb1269hg Nov 26, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/flow-node-performance-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ jobs:

- name: Check If Release Artifact Exist in Bucket
id: check-if-exist
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
run: |
set +e
ARTIFACT_NAME="build-${{ steps.parameters.outputs.branch-name-lower }}-${{ steps.parameters.outputs.commit-id-short }}"
Expand All @@ -99,6 +100,7 @@ jobs:

- name: Reset Network
id: reset-network
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
run: |
curl -X POST 'https://ci.preprod.hedera-devops.com/generic-webhook-trigger/invoke?token=${{ secrets.JENKINS_NETWORK_RESET }}&command=/devops-reset&text=engnet1%20${{ steps.check-if-exist.outputs.build-version }}&user_id=${{ vars.SLACK_ID }}&user_name=${{ vars.SLACK_USER }}&channel_id=${{ vars.DEVOP_CHANNEL_ID }}&channel_name=${{ vars.DEVOP_CHANNEL_NAME }}'
echo "Sleep 6 minutes for network reset"
Expand All @@ -115,6 +117,7 @@ jobs:

- name: Restore Old Signed State
id: restore-old-signed-state
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
run: |
curl -X POST 'https://ci.preprod.hedera-devops.com/generic-webhook-trigger/invoke?token=${{ secrets.JENKINS_RESTORE_BACKUP }}&command=/devops-restore-backup&text=gs%3A%2F%2Fchillybin%2Fengnet1-state%2Fengnet1-node00%2F${{ vars.GS_STATE }}&user_id=${{ vars.SLACK_ID }}&user_name=${{ vars.SLACK_USER }}&channel_id=${{ vars.DEVOP_CHANNEL_ID }}&channel_name=${{ vars.DEVOP_CHANNEL_NAME }}'
echo "Sleep 18 minutes for network to load"
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/flow-pull-request-formatting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ jobs:
egress-policy: audit

- name: Check PR Title
if: ${{ !github.event.pull_request.base.repo.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: step-security/conventional-pr-title-action@0eae74515f5a79f8773fa04142dd746df76666ac # v1.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node-flow-build-application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ defaults:
jobs:
code:
name: Code
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/node-zxc-compile-application-code.yaml
with:
java-version: ${{ github.event.inputs.java-version || '21' }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/node-flow-deploy-adhoc-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,8 @@ defaults:
jobs:
release-adhoc:
name: Release [Adhoc]
if: ${{ github.event_name == 'workflow_dispatch' }}
if: ${{ github.event_name == 'workflow_dispatch' &&
!github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/node-zxc-build-release-artifact.yaml
with:
version-policy: branch-commit
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node-flow-deploy-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ jobs:

deploy-tag:
name: Deploy Tag
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/node-zxc-deploy-preview.yaml
needs:
- prepare-deploy-preview
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/node-flow-deploy-release-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ jobs:

release-tag:
name: Release [Tag]
if: ${{ !github.event.workflow_run.head_repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/node-zxc-build-release-artifact.yaml
needs:
- prepare-tag-release
Expand Down Expand Up @@ -102,6 +103,7 @@ jobs:

release-branch:
name: Release [Branch]
if: ${{ !github.event.workflow_run.head_repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/node-zxc-build-release-artifact.yaml
if: ${{ github.event_name == 'workflow_run' && github.event.workflow_run.conclusion == 'success'}}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
with:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/node-flow-fsts-custom-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ concurrency:
jobs:
jrs-panel:
name: JRS Panel
if: ${{ !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
uses: ./.github/workflows/zxc-jrs-regression.yaml
with:
hedera-tests-enabled: true
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/node-flow-fsts-daily-interval-01.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


crypto-update-rhel8-4n-2c:
Expand All @@ -91,7 +91,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


crypto-update-centos7-4n-2c:
Expand All @@ -114,7 +114,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


crypto-update-4n-2c:
Expand All @@ -137,7 +137,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved

crypto-update-ubuntu2204-4n-2c:
name: Crypto-Update-Ubuntu2204-4N-2C
Expand All @@ -159,7 +159,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved

crypto-update-removal-4n-2c:
name: Crypto-Update-Removal-4N-2C
Expand All @@ -181,4 +181,4 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
14 changes: 7 additions & 7 deletions .github/workflows/node-flow-fsts-daily-interval-02.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


balances-validation-6n-1c:
Expand All @@ -102,7 +102,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- crypto-migration-7n-1c
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


crypto-invalid-accounts-4n-4c:
Expand All @@ -127,7 +127,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- balances-validation-6n-1c
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


comp-nd-reconnect-correctness-6n-1c:
Expand All @@ -150,7 +150,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


reconnect-6n-4c:
Expand All @@ -175,7 +175,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- comp-nd-reconnect-correctness-6n-1c
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


comp-neterror-4n-1c:
Expand All @@ -198,7 +198,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


crypto-restart-4n-1c:
Expand All @@ -223,4 +223,4 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- comp-neterror-4n-1c
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 5 additions & 5 deletions .github/workflows/node-flow-fsts-daily-interval-03.yaml
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


comp-update-dispreupdate-4n-2c:
Expand All @@ -93,7 +93,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


comp-update-reconnect-4n-2c:
Expand All @@ -116,7 +116,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


comp-update-reconnect-abort-4n-2c:
Expand All @@ -139,7 +139,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


comp-update-reconnect-abort-dispreupdate-4n-2c:
Expand All @@ -162,4 +162,4 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
2 changes: 1 addition & 1 deletion .github/workflows/node-flow-fsts-daily-interval-04.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


# global-3nreconnect-15n-4c:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node-flow-fsts-daily-interval-05.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved


# comp-ni-reconnect-correctness-6n-1c:
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/node-flow-fsts-daily-interval-06.yaml
andrewb1269hg marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


similarstake-4n:
Expand All @@ -101,7 +101,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- minstake-4n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


unevenstake-4n:
Expand All @@ -126,7 +126,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- similarstake-4n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


zerostake-4n:
Expand All @@ -151,7 +151,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- unevenstake-4n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


restartwithnewnodes-minstake-5n:
Expand All @@ -174,7 +174,7 @@ jobs:
gradle-cache-password: ${{ secrets.GRADLE_CACHE_PASSWORD }}
grafana-agent-username: ${{ secrets.GRAFANA_AGENT_USERNAME }}
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


restartwithnewnodes-similarstake-5n:
Expand All @@ -199,7 +199,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- restartwithnewnodes-minstake-5n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


restartwithnewnodes-unevenstake-5n:
Expand All @@ -224,7 +224,7 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- restartwithnewnodes-similarstake-5n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}


restartwithnewnodes-zerostake-5n:
Expand All @@ -249,4 +249,4 @@ jobs:
grafana-agent-password: ${{ secrets.GRAFANA_AGENT_PASSWORD }}
needs:
- restartwithnewnodes-unevenstake-5n
if: ${{ !cancelled() && always() }}
if: ${{ !cancelled() && always() && !github.event.workflow_dispatch.repository.fork }}
3 changes: 3 additions & 0 deletions .github/workflows/node-flow-fsts-daily-regression.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ defaults:
jobs:
interval-01:
name: Interval 1
if: ${{ !github.event.workflow_dispatch.repository.fork }}
uses: ./.github/workflows/platform-zxc-launch-jrs-workflow.yaml
with:
ref: ${{ github.event.inputs.ref || github.sha }}
Expand Down Expand Up @@ -71,6 +72,7 @@ jobs:

interval-04:
name: Interval 4
if: ${{ !github.event.workflow_dispatch.repository.fork }}
uses: ./.github/workflows/platform-zxc-launch-jrs-workflow.yaml
needs:
- interval-01
Expand All @@ -84,6 +86,7 @@ jobs:

interval-05:
name: Interval 5
if: ${{ !github.event.workflow_dispatch.repository.fork }}
uses: ./.github/workflows/platform-zxc-launch-jrs-workflow.yaml
needs:
- interval-04
Expand Down
Loading
Loading