Skip to content

LLT-5878: Xray tests on CI #170

LLT-5878: Xray tests on CI

LLT-5878: Xray tests on CI #170

Workflow file for this run

name: CI
on: [push, pull_request]
permissions: {}
jobs:
trigger:
if: |
github.event_name == 'push' ||
(
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
)
runs-on: ubuntu-24.04
steps:
- name: CI Trigger
run: echo "Triggering CI"
linters:
needs: trigger
uses: ./.github/workflows/linters.yml
tests:

Check failure on line 22 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 22, Col: 3): Error calling workflow 'NordSecurity/NepTUN/.github/workflows/tests.yml@349830b426c8739f20a1e07c68b320cb3568a21b'. The nested job 'xray-tests' is requesting 'pull-requests: write', but is only allowed 'pull-requests: none'.
needs: trigger
uses: ./.github/workflows/tests.yml
check-all-green:
needs:
- linters
- tests
runs-on: ubuntu-24.04
steps:
- name: Collect statuses from all jobs
uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # v1.2.2
with:
jobs: ${{ toJSON(needs) }}