Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nolte/plumbing
Github Project plumbing
https://github.com/nolte/plumbing
github plumbing
Last synced: 14 days ago
JSON representation
Github Project plumbing
- Host: GitHub
- URL: https://github.com/nolte/plumbing
- Owner: nolte
- Archived: true
- Created: 2020-07-20T09:10:10.000Z (over 4 years ago)
- Default Branch: develop
- Last Pushed: 2023-09-14T19:19:47.000Z (over 1 year ago)
- Last Synced: 2024-10-14T22:20:38.736Z (4 months ago)
- Topics: github, plumbing
- Language: Go
- Size: 160 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Plumbing
Collection of common Configs for Project Management and CI/CD.
probot | git | description
----------------------------------------------------------------- | --------------------------------------------------------------------------- | -------------------------------------------------------------
[settings](https://probot.github.io/apps/settings/) | [probot/settings](https://github.com/probot/settings) | Configure Github Projects by Source.
[stale](https://probot.github.io/apps/stale/) | [probot/stale](https://github.com/probot/stale) | Handle stale issues.
[release-drafter](https://probot.github.io/apps/release-drafter/) | [toolmantim/release-drafter](https://github.com/toolmantim/release-drafter) | Creates a Human Readable Release Change Log.
[boring-cyborg](https://probot.github.io/apps/boring-cyborg/) | [kaxil/boring-cyborg](https://github.com/kaxil/boring-cyborg) | Different util actions like, automatically label Pull Request## Usage
### Mage Targets
The [magefile](https://magefile.org/magefiles/) Project makes it possible to create reuseable Targets, like Kind Cluster Creation.
```go
//+build magepackage main
import (
...
// mage:import
_ "github.com/nolte/plumbing/cmd/golang"
...
)
...
```For more information about importing Targets take a look to the [Documentation](https://magefile.org/importing/).
_Generate Binary_
```sh
mage -compile ./dist/static-output
```### Probot Remote Configs
For Using in other Github Projects use the Probot Repo Config, more informations at [probot.github.io](https://probot.github.io/docs/best-practices/#configuration).
example: `.github/stale.yml`
```ỳaml
_extends: plumbing
```