-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
10,334 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#!/bin/sh | ||
. "$(dirname "$0")/_/husky.sh" | ||
|
||
npm run build | ||
git add dist |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,72 @@ | ||
# Github Topic Syncer | ||
|
||
Sync Github Topics from a Github Action | ||
Sync Github Topics from a Github Action. | ||
|
||
Whatever topics are provided in the action will replace the topics in the Github repository | ||
when the action is executed. | ||
|
||
## Inputs | ||
|
||
### `topics` | ||
|
||
A space-separated list of topics to sync. Topics can only contain lower-case letters, | ||
numbers, and hyphens. | ||
|
||
#### Examples | ||
|
||
```yaml | ||
with: | ||
topics: "web-development python" | ||
``` | ||
### `token` | ||
|
||
## Outputs | ||
A Github personal access token with the `repo` scope. Typically this is stored | ||
in repository secrets to provide to the action: | ||
|
||
#### Examples | ||
|
||
```yaml | ||
with: | ||
token: ${{ secrets.gh_token }} | ||
``` | ||
|
||
## Examples | ||
|
||
Here's an example workflow that syncs the topics of a Github repository whenever | ||
the workflow is updated on the `main` branch. | ||
|
||
```yaml | ||
name: Sync Github Topics | ||
on: | ||
push: | ||
paths: | ||
- ".github/workflows/sync-topics.yml" | ||
branches: | ||
- main | ||
jobs: | ||
sync-topics: | ||
runs-on: ubuntu-latest | ||
name: Sync Github Topics | ||
steps: | ||
- uses: nickderobertis/github-topic-syncer@alpha | ||
with: | ||
topics: "topic1 topic-2" | ||
token: ${{ secrets.gh_token }} | ||
``` | ||
|
||
## Development Status | ||
|
||
This project uses [semantic-release](https://github.com/semantic-release/semantic-release) for versioning. | ||
Any time the major version changes, there may be breaking changes. If it is working well for you, consider | ||
pegging to the current major version, e.g. `github-topic-syncer@v1`, to avoid breaking changes. Alternatively, | ||
you can always point to the most recent stable release with the `github-topic-syncer@latest`. | ||
|
||
pegging to the current major version, e.g. `nickderobertis/github-topic-syncer@v1`, to avoid breaking changes. Alternatively, | ||
you can always point to the most recent stable release with the `nickderobertis/github-topic-syncer@latest`. | ||
|
||
## Developing | ||
|
||
Clone the repo and then run `npm install` to set up the pre-commit hooks. | ||
|
||
## Author | ||
|
||
Created by Nick DeRobertis. MIT License. | ||
Created by Nick DeRobertis. MIT License. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.