-
Notifications
You must be signed in to change notification settings - Fork 6
27 lines (24 loc) · 880 Bytes
/
gitlab-ci.yml
File metadata and controls
27 lines (24 loc) · 880 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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 <alessandro.nadalini3@unibo.it>
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@v1
# 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