Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

@backstage/plugin-scaffolder-backend-module-gitlab

backstage250.2kApache-2.00.9.0TypeScript support: included

null

backstage

readme

headline

Backstage

English | 한국어 | 中文版 | Français

License CNCF Status Discord Code style Codecov OpenSSF Best Practices OpenSSF Scorecard

What is Backstage?

Backstage is an open source framework for building developer portals. Powered by a centralized software catalog, Backstage restores order to your microservices and infrastructure and enables your product teams to ship high-quality code quickly without compromising autonomy.

Backstage unifies all your infrastructure tooling, services, and documentation to create a streamlined development environment from end to end.

software-catalog

Out of the box, Backstage includes:

  • Backstage Software Catalog for managing all your software such as microservices, libraries, data pipelines, websites, and ML models
  • Backstage Software Templates for quickly spinning up new projects and standardizing your tooling with your organization’s best practices
  • Backstage TechDocs for making it easy to create, maintain, find, and use technical documentation, using a "docs like code" approach
  • Plus, a growing ecosystem of open source plugins that further expand Backstage’s customizability and functionality

Backstage was created by Spotify but is now hosted by the Cloud Native Computing Foundation (CNCF) as an Incubation level project. For more information, see the announcement.

Project roadmap

For information about the detailed project roadmap including delivered milestones, see the Roadmap.

Getting Started

To start using Backstage, see the Getting Started documentation.

Documentation

The documentation of Backstage includes:

Community

To engage with our community, you can use the following resources:

Governance

See the GOVERNANCE.md document in the backstage/community repository.

License

Copyright 2020-2025 © The Backstage Authors. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our Trademark Usage page: https://www.linuxfoundation.org/trademark-usage

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Security

Please report sensitive security issues using Spotify's bug-bounty program rather than GitHub.

For further details, see our complete security release process.

changelog

@backstage/plugin-scaffolder-backend-module-gitlab

0.9.0

Minor Changes

  • d86ce21: Added additional feedback in case branch is already created

Patch Changes

0.8.2-next.1

Patch Changes

0.8.2-next.0

Patch Changes

0.8.1

Patch Changes

  • 0df33ea: fix: Creating a repository in a user namespace would always lead to an error
  • 984b283: Made "gitlab:pipeline:trigger" action idempotent
  • 225c733: Made gitlab:repo:push action idempotent.
  • a08cb20: Remove usages of @backstage/backend-common
  • ac58f84: Made gitlab:issue:edit action idempotent.
  • f6b51a8: Made "gitlab:projectDeployToken:create" action idempotent
  • a75e18f: Change the if statement in the catch block to match what the new version of Gitbeaker will return
  • 36af946: Made "gitlab:projectVariable:create" action idempotent
  • 1cea434: Made "gitlab:projectAccessToken:create" action idempotent
  • 4f8b5b6: Allow signing git commits using configured private PGP key in scaffolder
  • 83ae330: Made "gitlab:group:migrate" action idempotent
  • Updated dependencies

0.8.1-next.2

Patch Changes

0.8.1-next.1

Patch Changes

0.8.1-next.0

Patch Changes

0.8.0

Minor Changes

  • 06eee14: Support empty repository creation in gitlab without workspace pushing and conditionally skip if the repository already exists.

Patch Changes

  • a0419a6: Made gitlab:group:ensureExists action idempotent
  • 9d04e91: Fix automated assignment of reviewers for instances without premium/ultimate license (404). Introduce opt-in flag for automatic reviewer assignment based on approval rules
  • 9545c5f: createGitlabProjectMigrateAction can now output the migrationId
  • e52cee6: Made gitlab:issues:create action idempotent.
  • fe44946: Fixed bug of passing wrong value to onChange handler when using GitLab autocomplete
  • 66e392f: Making publish:gitlab:merge-request idempotent.
  • a7b22eb: Fixed bug in gitlabRepoPush where it was looking in the wrong place in the exception response from gitbeaker when checking if the branch already exists
  • Updated dependencies

0.8.0-next.3

Patch Changes

0.8.0-next.2

Patch Changes

0.8.0-next.1

Minor Changes

  • 06eee14: Support empty repository creation in gitlab without workspace pushing and conditionally skip if the repository already exists.

Patch Changes

0.7.2-next.0

Patch Changes

0.7.1

Patch Changes

0.7.1-next.1

Patch Changes

0.7.1-next.0

Patch Changes

0.7.0

Minor Changes

  • c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
  • 32459d0: BREAKING: Upgraded the gitbeaker library to version 41. As part of this, the scopes parameter to the gitlab:projectDeployToken:create is no longer optional, so you will have to pass it a value (for example ['read_repository']).

Patch Changes

0.7.0-next.2

Patch Changes

0.7.0-next.1

Patch Changes

0.7.0-next.0

Minor Changes

  • c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
  • 32459d0: BREAKING: Upgraded the gitbeaker library to version 41. As part of this, the scopes parameter to the gitlab:projectDeployToken:create is no longer optional, so you will have to pass it a value (for example ['read_repository']).

Patch Changes

0.6.1

Patch Changes

0.6.1-next.3

Patch Changes

0.6.1-next.2

Patch Changes

0.6.1-next.1

Patch Changes

0.6.1-next.0

Patch Changes

0.6.0

Minor Changes

  • 73f2ccf: declare correct type (number) for publish:gitlab output.projectId

Patch Changes

0.6.0-next.2

Minor Changes

  • 73f2ccf: declare correct type (number) for publish:gitlab output.projectId

Patch Changes

0.5.1-next.1

Patch Changes

0.5.1-next.0

Patch Changes

0.5.0

Minor Changes

  • d425fc4: BREAKING: The return values from createBackendPlugin, createBackendModule, and createServiceFactory are now simply BackendFeature and ServiceFactory, instead of the previously deprecated form of a function that returns them. For this reason, createServiceFactory also no longer accepts the callback form where you provide direct options to the service. This also affects all coreServices.* service refs.

    This may in particular affect tests; if you were effectively doing createBackendModule({...})() (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your packages/backend/src/index.ts too, where you add plugins, modules, and services. If you were using createServiceFactory with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.

    As part of this change, the IdentityFactoryOptions type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to migrate to the new auth system if you still rely on it.

Patch Changes

0.5.0-next.2

Patch Changes

0.5.0-next.1

Patch Changes

0.5.0-next.0

Minor Changes

  • d425fc4: BREAKING: The return values from createBackendPlugin, createBackendModule, and createServiceFactory are now simply BackendFeature and ServiceFactory, instead of the previously deprecated form of a function that returns them. For this reason, createServiceFactory also no longer accepts the callback form where you provide direct options to the service. This also affects all coreServices.* service refs.

    This may in particular affect tests; if you were effectively doing createBackendModule({...})() (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your packages/backend/src/index.ts too, where you add plugins, modules, and services. If you were using createServiceFactory with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.

    As part of this change, the IdentityFactoryOptions type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to migrate to the new auth system if you still rely on it.

Patch Changes

0.4.5

Patch Changes

0.4.5-next.3

Patch Changes

0.4.5-next.2

Patch Changes

0.4.5-next.1

Patch Changes

0.4.5-next.0

Patch Changes

0.4.4

Patch Changes

0.4.4-next.1

Patch Changes

0.4.3-next.0

Patch Changes

0.4.1

Patch Changes

0.4.1-next.3

Patch Changes

0.4.1-next.2

Patch Changes

0.4.1-next.1

Patch Changes

0.4.1-next.0

Patch Changes

0.4.0

Minor Changes

  • 18f736f: Add examples for gitlab:projectVariable:create scaffolder action & improve related tests

Patch Changes

0.4.0-next.2

Minor Changes

  • 18f736f: Add examples for gitlab:projectVariable:create scaffolder action & improve related tests

Patch Changes

0.3.4-next.1

Patch Changes

0.3.4-next.0

Patch Changes

0.3.3

Patch Changes

0.3.3-next.1

Patch Changes

0.3.3-next.0

Patch Changes

0.3.2

Patch Changes

0.3.1

Patch Changes

0.3.0

Minor Changes

  • 6bfb7b1: Output the iid as issuesIid from the gitlab:issues:create action

Patch Changes

0.3.0-next.2

Minor Changes

  • 6bfb7b1: Output the iid as issuesIid from the gitlab:issues:create action

Patch Changes

0.2.17-next.1

Patch Changes

0.2.16-next.0

Patch Changes

0.2.13

Patch Changes

0.2.13-next.3

Patch Changes

0.2.13-next.2

Patch Changes

0.2.13-next.1

Patch Changes

0.2.13-next.0

Patch Changes

0.2.12

Patch Changes

0.2.12-next.2

Patch Changes

0.2.12-next.1

Patch Changes

0.2.12-next.0

Patch Changes

0.2.11

Patch Changes

0.2.11-next.3

Patch Changes

0.2.11-next.2

Patch Changes

0.2.11-next.1

Patch Changes

0.2.11-next.0

Patch Changes

0.2.10

Patch Changes

0.2.10-next.2

Patch Changes

0.2.10-next.1

Patch Changes

0.2.10-next.0

Patch Changes

0.2.9

Patch Changes

0.2.9-next.2

Patch Changes

0.2.8-next.1

Patch Changes

0.2.8-next.0

Patch Changes

0.2.6

Patch Changes

0.2.6-next.3

Patch Changes

0.2.6-next.2

Patch Changes

0.2.6-next.1

Patch Changes

0.2.5-next.0

Patch Changes

0.2.3

Patch Changes

0.2.3-next.2

Patch Changes

0.2.3-next.1

Patch Changes

0.2.3-next.0

Patch Changes

0.2.2

Patch Changes

0.2.2-next.1

Patch Changes

0.2.2-next.0

Patch Changes

0.2.1

Patch Changes

0.2.1-next.3

Patch Changes

0.2.1-next.2

Patch Changes

  • 30e6edd7f6a5: Add support for dry run for gitlab:group:ensureExists action.
  • Updated dependencies

0.2.1-next.1

Patch Changes

0.2.1-next.0

Patch Changes

0.2.0

Minor Changes

  • 439e2986be1: Add a new scaffolder action for gitlab to ensure a group exists

Patch Changes

0.2.0-next.2

Minor Changes

  • 439e2986be1: Add a new scaffolder action for gitlab to ensure a group exists

Patch Changes

0.1.1-next.1

Patch Changes

0.1.1-next.0

Patch Changes

0.1.0

Minor Changes

  • 1ad400bb2de: Add Gitlab Scaffolder Plugin

Patch Changes

0.1.0-next.3

Patch Changes

0.1.0-next.2

Patch Changes

0.1.0-next.1

Patch Changes

0.1.0-next.0

Minor Changes

  • 1ad400bb2de: Add Gitlab Scaffolder Plugin

Patch Changes