Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/smoothbear/migration-label-action
A workflow for detecting and automatically labeling migration changes.
https://github.com/smoothbear/migration-label-action
Last synced: 1 day ago
JSON representation
A workflow for detecting and automatically labeling migration changes.
- Host: GitHub
- URL: https://github.com/smoothbear/migration-label-action
- Owner: smoothbear
- License: mit
- Created: 2022-02-04T07:05:25.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-02-08T05:49:32.000Z (almost 3 years ago)
- Last Synced: 2024-05-20T19:32:50.287Z (6 months ago)
- Language: TypeScript
- Size: 202 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Migration Label
A workflow for detecting and automatically labeling migration changes.
### Usage
```yml
name: migration-labelon:
pull_requestjobs:
migration-label:
runs-on: ubuntu-latest
steps:
- name: migration-label
uses: smoothbear/migration-label-action@v1
with:
token: "${{ secrets.GITHUB_TOKEN }}"
```### Parameter
| name | description | required |
| - | - | - |
| `label-name` | Will be added label's name. default: `migration` | false |
| `owner` | A repository owner username. | false |
| `token` | Personal access token. If you didn't define owner, use `${{ secrets.GITHUB_TOKEN}}` | true |