https://github.com/pocke/repo-metadata
Specify GitHub repository metadata from a file
https://github.com/pocke/repo-metadata
ci github golang
Last synced: 2 months ago
JSON representation
Specify GitHub repository metadata from a file
- Host: GitHub
- URL: https://github.com/pocke/repo-metadata
- Owner: pocke
- License: apache-2.0
- Created: 2019-01-25T14:34:31.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-25T15:31:30.000Z (over 7 years ago)
- Last Synced: 2025-05-14T00:39:05.224Z (about 1 year ago)
- Topics: ci, github, golang
- Language: Go
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
repo-metadata
===
Put `.repo-metadata.yaml`, it updates metadata of the repository.
Usage
---
Put `.repo-metadata.yaml`
```yaml
description: Specify GitHub repository metadata from a file
homepage: https://example.com
topics:
- golang
- github
- ci
```
Note: topics must not include upper case characters.
Add the following code to your .travis.yml
```yaml
after_success:
- go get github.com/pocke/repo-metadata
- repo-metadata
```
Get a personal access token from https://github.com/settings/tokens with `public_repo` scope.
Set `GITHUB_ACCESS_TOKEN` environment variable into Travis CI.