Skip to content

Schedule Integration Test Suite #73

Schedule Integration Test Suite

Schedule Integration Test Suite #73

Workflow file for this run

# Copyright (C) 2015 The Gravitee team (http://gravitee.io)
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Schedule Integration Test Suite
on:
schedule:
- cron: "00 05 * * 1-5"
jobs:
trigger-test-suite:
runs-on: ubuntu-latest
env:
BRANCH: ${{ matrix.branch }}
CIRCLECI_TOKEN: ${{ secrets.CIRCLECI_TOKEN }}
strategy:
fail-fast: false
matrix:
branch:
- 4.3.x
- 4.4.x
- 4.5.x
- master
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
persist-credentials: false
- name: "Trigger test pipeline and notify on failure"
run: |
echo "🧪 Triggering test pipeline"
npx zx scripts/trigger-test.mjs --notify true --branch ${BRANCH}