From 3468925499b5511ae2f4da0cbd6c8433ac991332 Mon Sep 17 00:00:00 2001 From: Rani Uttam Kamble <98833984+rani-ukamble@users.noreply.github.com> Date: Tue, 7 Oct 2025 15:24:45 +0530 Subject: [PATCH] Add workflow gitlab-source-group/source-gitlab-input --- .github/workflows/source-gitlab-input.yml | 33 +++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 .github/workflows/source-gitlab-input.yml diff --git a/.github/workflows/source-gitlab-input.yml b/.github/workflows/source-gitlab-input.yml new file mode 100644 index 0000000..bcfa49d --- /dev/null +++ b/.github/workflows/source-gitlab-input.yml @@ -0,0 +1,33 @@ +name: gitlab-source-group/source-gitlab-input +on: + push: + workflow_dispatch: +concurrency: + group: "${{ github.ref }}" + cancel-in-progress: true +env: + ENVIRONMENT: demo-env +jobs: + build_job: + runs-on: ubuntu-latest + timeout-minutes: 60 + env: + DEPLOY_ENV: dev + steps: + - uses: actions/checkout@v4.1.0 + with: + fetch-depth: 20 + lfs: true + - run: echo "Building for $DEPLOY_ENV" + deploy_job: + needs: build_job + runs-on: ubuntu-latest + timeout-minutes: 60 + env: + DEPLOY_ENV: dev + steps: + - uses: actions/checkout@v4.1.0 + with: + fetch-depth: 20 + lfs: true + - run: echo "Deploying to $ENVIRONMENT environment"