[CI]: pushed initial version #1
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2025 ETH Zurich and University of Bologna. | |
# Licensed under the Apache License, Version 2.0, see LICENSE.APACHE for details. | |
# SPDX-License-Identifier: Apache-2.0 | |
# Author: Alessandro Nadalini <[email protected]> | |
name: gitlab-Copyright | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
gitlab-ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check GitLab CI | |
uses: pulp-platform/pulp-actions/gitlab-ci@v2 | |
# Skip on forks or pull requests from forks due to missing secrets. | |
if: github.repository == 'pulp-platform/MAGIA' && (github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository) | |
with: | |
domain: iis-git.ee.ethz.ch | |
repo: github-mirror/magia | |
token: ${{ secrets.GITLAB_TOKEN }} | |
poll-count: 2160 |