Remove protocol from s3 endpoint url #142
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
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
permissions: | |
pull-requests: 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: '54779398' | |
GL_RUNNER_TOKEN: ${{ secrets.GL_INFRA_RUNNER_TOKEN }} | |
GL_API_TOKEN: ${{ secrets.GL_API_TOKEN }} | |
SHOW_JOB_LOGS: none | |
env: | |
GLPA_C0_GH_REF: ${{ github.ref }} | |
GLPA_C0_SSH_KNOWN_HOSTS: ${{ vars.SSH_KNOWN_HOSTS }} | |
GLPA_C0_PIPELINE_SSH_KEY: ${{ secrets.PIPELINE_SSH_KEY }} | |
GLPA_TF_VAR_cloudflare_api_token: ${{ secrets.CLOUDFLARE_API_TOKEN }} | |
GLPA_TF_VAR_cloudflare_account_id: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | |
GLPA_TF_VAR_gitlab_api_token: ${{ secrets.GL_API_TOKEN }} | |
GLPA_TF_VAR_github_app_key: ${{ secrets.GH_TF_APP_KEY }} | |
GLPA_TF_VAR_server_administration_ip: ${{ secrets.SERVER_ADMINISTRATION_IP }} | |
GLPA_TF_VAR_server_administration_ssh_port: ${{ secrets.SERVER_ADMINISTRATION_SSH_PORT }} | |
- 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 |