Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

sedeaque

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sedeaque

Batch set gitlab CI/CD variables with toml file

  • 1.16.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

gitlab-var-helper

Create and update GitLab CI/CD environment variables from settings file in toml format, based on gitlab-variable-helper

GitHub tag License Conventional Commits lerna

Installation

npm i gitlab-var-helper
# cli
npm i -g gitlab-var-helper-cli

Usage

Generate token

  1. Open page
https://git.your.com/profile/personal_access_tokens
  1. Create Personal Access Tokens with Scopes
  • api
  • read_repository
  • write_repository
  1. Remember the generated token
Upw_foooooooooooo

Create settings file

# settings.toml
title = "gitlab var settints"
host = "https://git.your.com"
token = "Upw_foooooooooooo"

# groups ids
gids = [ 13 ]

# project ids
pids = [ 76, 77 ]

# gVars.0 provides default values for groups in gids 
[gVars.0.publicVars]
  VAR_PUB = 1024
  VAR_DUP_PUB = 1024

[gVars.0.protectedVars]
  VAR_HIDE = 1024
  VAR_HIDE2 = 1024

[gVars.13.publicVars]
  VAR_PUB = 'abcd'
[gVars.13.protectedVars]
  VAR_HIDE = 'def'
  VAR_DUP_PUB = 2048

# pVars.0 provides default values for Projects in pids
[pVars.0.publicVars]
  VAR_PUB = 1024
[pVars.0.protectedVars]
  VAR_HIDE = 1024

[pVars.77.publicVars]
  VAR_PUB = 2048
  VAR_77_PUB = 2048
[pVars.77.protectedVars]
  VAR_77_HIDE = 2048

Calling with package

import { loadFiles } from 'gitlab-var-helper'

const paths = [ './settings.toml' ]
loadFiless(paths)

Calling by cli

gitlab-var-helper -f ./settings.toml
gitlab-var-helper -f ./settings.toml -f ./other.toml

Packages

PackageVersionDependenciesDevDependencies
gitlab-var-helpermain-svgmain-d-svgmain-dd-svg
gitlab-var-helper-clicli-svgcli-d-svgcli-dd-svg

License

MIT

Languages

FAQs

Package last updated on 03 Apr 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc