npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

glpushrule

v1.1.16

Published

CLI for managing Gitlab push rules across groups and repositories. Apply sweeping changes with one command.

Downloads

100

Readme

glpushrule

CLI for managing Gitlab push rules across groups and repositories. Apply sweeping changes with one command.

Features:

  • Show push rules across groups and repositories
  • Add push rules to groups and repositories without existing push rules
  • Edit push rules for groups and repositories with existing push rules

Planned features:

  • Delete push rules across groups and repositories

Usage

Install glpushrule

# With npm
npm i -g glpushrule

# With yarn
yarn global add glpushrule

Create a new Gitlab Access Token

glpushrule needs read/write access to the API so it can show and edit push rules. In your Gitlab instance, create a new access token with the api scope.

Set the required environment variables

glpushrule requires the Environment variables GITLAB_HOST and GITLAB_TOKEN to be set. You can set them via a .env file, or in your shell.

To use a .env file, create a new file named .env in the directory you are executing glpushrule

# .env
GITLAB_HOST="https://gitlab.com/"
GITLAB_TOKEN="<YOUR_SECRET_TOKEN>"

Alternatively, you can set them in the shell as follows:

# Export them in the environment
export GITLAB_HOST="https://gitlab.com/"
export GITLAB_TOKEN="<YOUR_SECRET_TOKEN>"

# Or set them during execution
GITLAB_HOST="https://gitlab.com/" GITLAB_TOKEN="<YOUR_SECRET_TOKEN>" glpushrule --help

Execute glpushrule

Show existing push rules (Recommended to test if the correct groups and projects are matched):

glpushrule show --matcher "/regex/to/match/your/groups/and/projects/paths"

Add push rules to groups and projects without push rules:

glpushrule add --matcher "/regex/to/match/your/groups/and/projects/paths" --rule '{"commitMessageRegex": "^ci: .*"}'

Edit push rules for groups and projects with existing push rules:

glpushrule edit --matcher "/regex/to/match/your/groups/and/projects/paths" --rule '{"commitMessageRegex": "^ci: .*"}'

You can also set the --matcher and --rule flag as Environment variables:

# .env
GITLAB_HOST="https://gitlab.com/"
GITLAB_TOKEN="<YOUR_SECRET_TOKEN>"
MATCHER="/regex/to/match/your/groups/and/projects/paths"
PUSH_RULE='{
"commitMessageRegex": "^ci: .*"
}'

Available Push Rules

In the example above, the commit message regex is used as an example for adding and editing rules. The other available push rules can be found in the gitbeaker project, in the CreateAndEditPushRuleOptions interface:

export interface CreateAndEditPushRuleOptions {
  denyDeleteTag?: boolean;
  memberCheck?: boolean;
  preventSecrets?: boolean;
  commitMessageRegex?: string;
  commitMessagNegativeRegex?: string;
  branchNameRegex?: string;
  authorEmailRegex?: string;
  fileNameRegex?: string;
  maxFileSize?: number;
  commitCommitterCheck?: boolean;
  rejectUnsignedCommits?: boolean;
}

Command documentation

glpushrule command

# glpushrule --help
Usage: glpushrule [options] [command]

CLI for managing Gitlab push rules across multiple groups and repositories

Options:
  -V, --version                 output the version number
  -m, --matcher <matcherRegEx>  the regex to use for filtering groups and repositories (env: MATCHER)
  -h, --help                    display help for command

Commands:
  edit [options]                edit already existing push rules
  show                          show push rules
  add [options]                 add push rules if non exist
  help [command]                display help for command

glpushrule add command

# glpushrule add --help
Usage: glpushrule add [options]

add push rules if non exist

Options:
  -r, --rule <pushRuleJson>     the push rules as JSON. Example: '{"commitMessageRegex": "^ci: .*"}' (env: PUSH_RULE)
  -h, --help                    display help for command

Global Options:
  -V, --version                 output the version number
  -m, --matcher <matcherRegEx>  the regex to use for filtering groups and repositories (env: MATCHER)

glpushrule edit command

# glpushrule edit --help
Usage: glpushrule edit [options]

edit already existing push rules

Options:
  -r, --rule <pushRulesJson>    the push rules as JSON. Example: '{"commitMessageRegex": "^ci: .*"}' (env: PUSH_RULE)
  -h, --help                    display help for command

Global Options:
  -V, --version                 output the version number
  -m, --matcher <matcherRegEx>  the regex to use for filtering groups and repositories (env: MATCHER)

Environment Variables

The application uses the following environment variables:

| Environment Variable | Description | Required | |----------------------|--------------------------------------------------------|---------------------| | GITLAB_HOST | The Gitlab instance in which to manage push rules | Yes | | GITLAB_TOKEN | The Gitlab Access Token with the api permission | Yes | | MATCHER | The regex to use for filtering groups and repositories | No, if set via flag | | PUSH_RULE | The push rules as JSON | No, if set via flag |

Development

Running

yarn install

# Run with node
yarn run start

# Run with ts-node
yarn run start:dev

Linting

# Run ESLint without auto fixing
yarn run lint

# Run ESLint with auto fixing
yarn run lint:fix
yarn run lint --fix

# Run pre-commit
pip install -r requirements.txt
yarn run pre-commit

Testing

yarn run jest

Contributing

Please check out the CONTRIBUTING.md