Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/logerfo/target-label-action
A GitHub Action that checks if the pull request target branch matches with its labels.
https://github.com/logerfo/target-label-action
actions label
Last synced: 19 days ago
JSON representation
A GitHub Action that checks if the pull request target branch matches with its labels.
- Host: GitHub
- URL: https://github.com/logerfo/target-label-action
- Owner: Logerfo
- License: mit
- Created: 2019-11-04T19:10:32.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-04T21:43:45.000Z (about 1 month ago)
- Last Synced: 2024-10-09T12:23:43.809Z (about 1 month ago)
- Topics: actions, label
- Language: JavaScript
- Homepage:
- Size: 167 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
[![Dependencies Status](https://david-dm.org/logerfo/target-label-action/dev-status.svg)](https://david-dm.org/logerfo/target-label-action?type=dev)
# Target Label Action
This action will check if the pull request target branch matches with its labels.## Setting up
Create a file named `.github/workflows/target-label.yml`.### Minimal Configuration
```yml
name: Target Label
on:
pull_request:
types: [labeled, unlabeled]
jobs:
build:
name: Target Label
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master
- uses: Logerfo/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
```### Complete configuration
All values are default.
```yml
name: Target Label
on:
pull_request:
types: [labeled, unlabeled]
jobs:
build:
name: Target Label
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@master
- uses: Logerfo/[email protected]
with:
github-token: ${{ secrets.GITHUB_TOKEN }} # The `GITHUB_TOKEN` secret.
config-path: .github/target-label.yml # The path of the addtional configurations file.
apply: never # `never` to never apply labels;
# `first` to always apply the first label;
# `single` to only apply when the number of labels is one.
```### Additional configurations file
You also need create a additional configuration file. The default path is `.github/target-label.yml`, but you can change it in the action configuration file, as shown above.
The file must follow the following structure:
```yml
target-branch: [labels]
```
For example:
```yml
master: [bug, enhancement]
dev: [feature]
```### Auto update
You can use (at your own risk) the `release` branch instead of the specific version tag.
Never user `master`, since the distribution file does not exist in this branch and the action will always fail.## Changelog
Click [here](CHANGELOG.md).## Contributing
If you have suggestions for how close-label could be improved, or want to report a bug, open an issue! We'd love all and any contributions.For more, check out the [Contributing Guide](CONTRIBUTING.md).
## Donate
BTC: 1LoGErFoNzE1gCA5fzk6A82nV6iJdKssSZ