Skip to content

update(gitlab): example for gitlab pipelines #30

update(gitlab): example for gitlab pipelines

update(gitlab): example for gitlab pipelines #30

Workflow file for this run

on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: asdf-vm/actions/install@v4
with:
tool_versions: |
action-validator 0.7.1
- run: asdf reshim action-validator
- run: action-validator ./action.yml
- run: action-validator ./.github/workflows/*
validate-gitlab-template:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: mikefarah/[email protected]
with:
cmd: yq e --exit-status ./gitlab/runway-complete.yml
custom-controller-login:
if: ${{ github.actor != 'dependabot[bot]' }}
needs:
- test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: ./
with:
username: ${{ secrets.RUNWAY_LOGIN }}
password: ${{ secrets.RUNWAY_PASSWORD }}
controller-url: ${{ secrets.RUNWAY_CONTROLLER }}
- run: env|grep RUNWAY_CONTROLLER