Skip to content

Commit

Permalink
Add gitlab-ci action
Browse files Browse the repository at this point in the history
  • Loading branch information
Luka Macan committed Sep 22, 2023
1 parent 7607a2b commit be4108f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/gitlab-ci-action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: gitlab-ci

on: [ push, 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/pulp-nnx' && (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/pulp-nnx
token: ${{ secrets.GITLAB_TOKEN }}

0 comments on commit be4108f

Please sign in to comment.