-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #117 from code0-tech/add-gitlab-pipeline
Add GitLab Pipeline for Telescopium trigger
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
permissions: | ||
pull-requests: write | ||
packages: write | ||
|
||
jobs: | ||
pipeline: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: Taucher2003/[email protected] | ||
name: Run pipeline | ||
id: pipeline | ||
with: | ||
GL_SERVER_URL: https://gitlab.com | ||
GL_PROJECT_ID: '65817096' | ||
GL_RUNNER_TOKEN: ${{ secrets.GL_RUNNER_TOKEN }} | ||
GL_API_TOKEN: ${{ secrets.GL_API_TOKEN }} | ||
SHOW_JOB_LOGS: all | ||
OVERRIDE_GITHUB_SHA: ${{ github.event_name == 'push' && github.sha || github.event.pull_request.head.sha }} | ||
OVERRIDE_GITHUB_REF_NAME: ${{ github.event_name == 'push' && github.ref_name || github.event.pull_request.head.ref }} | ||
env: | ||
GLPA_C0_GH_REF: ${{ github.ref }} | ||
GLPA_C0_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Find existing comment | ||
uses: peter-evans/find-comment@v3 | ||
id: find-comment | ||
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | ||
with: | ||
issue-number: ${{ github.event.pull_request.number }} | ||
comment-author: 'github-actions[bot]' | ||
body-includes: <!-- glpa_comment:pipeline --> | ||
|
||
- name: Create or update comment | ||
uses: peter-evans/create-or-update-comment@v4 | ||
if: ${{ !cancelled() && github.event_name == 'pull_request' }} | ||
with: | ||
comment-id: ${{ steps.find-comment.outputs.comment-id }} | ||
issue-number: ${{ github.event.pull_request.number }} | ||
body: | | ||
<!-- glpa_comment:pipeline --> | ||
${{ steps.pipeline.outputs.SUMMARY_TEXT }} | ||
edit-mode: replace |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
stages: | ||
- test | ||
|
||
include: | ||
- project: code0-tech/development/telescopium | ||
ref: build-branch | ||
file: ci-template.gitlab-ci.yml |