csm-actions/Label Action
Label Action is GitHub Actions to create GitHub Issue labels to trigger GitHub Actions Workflows. This is useful to build a Client / Server Model by GitHub Actions.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| prefix | The prefix for the label name. The actual label name will consist of this prefix plus a random string, resulting in a 50-character name. The random string helps avoid label name collisions. | yes | — |
| description | The description of the label. | no | "" |
| delete_label | Whether to delete the label shortly after creation. | no | true |
| repository_owner | The repository owner where the label will be created. | no | ${{github.repository_owner}} |
| repository_name | The repository name where the label will be created. | no | ${{github.event.repository.name}} |
| github_token | The GitHub Access Token used to create the label. The permission `issues:write` is required. | no | ${{github.token}} |
Outputs
| name | description |
|---|---|
| label_name | The name of the label that was created. |