All my cool GitHub cool stuff + fixes and reaches everything I own and work on.
This repository is available as an npm package:
npm install @professoroakz/githubconst github = require('@professoroakz/github');
// Get package metadata
const metadata = github.getMetadata();
console.log(metadata.version);
// List profile files
const profileFiles = github.listProfileFiles();
// List settings files
const settingsFiles = github.listSettingsFiles();
// Get path to a specific profile file
const profilePath = github.getProfilePath('README.md');
// Get path to a specific settings file
const settingsPath = github.getSettingsPath('.actions');MIT all my cool github cool stuff + fixes and reaches everything I own and work on.
This repository is available as an official Docker package on GitHub Container Registry.
# Pull the latest version
docker pull ghcr.io/professoroakz/github-config:latest
# Pull a specific version
docker pull ghcr.io/professoroakz/github-config:1.3.37# Run interactively
docker run -it ghcr.io/professoroakz/github-config:latest
# Run with custom volume mounts
docker run -it -v $(pwd)/profile:/app/profile:ro ghcr.io/professoroakz/github-config:latest# Build and start
docker-compose up -d
# View logs
docker-compose logs -f
# Stop
docker-compose down# Build with default settings
docker build -t professoroakz/github-config:local .
# Build with custom version
docker build --build-arg VERSION=1.3.37 -t professoroakz/github-config:1.3.37 .This repository is also available as an npm package:
npm install @professoroakz/githubCurrent version: 1.3.37