Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sv-tools/create-milestone-action
Creating a milestone or returning an existing one. Pure JS action.
https://github.com/sv-tools/create-milestone-action
actions javascript milestones
Last synced: about 1 month ago
JSON representation
Creating a milestone or returning an existing one. Pure JS action.
- Host: GitHub
- URL: https://github.com/sv-tools/create-milestone-action
- Owner: sv-tools
- License: mit
- Created: 2021-05-03T13:57:14.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-09-30T07:54:27.000Z (about 2 months ago)
- Last Synced: 2024-10-06T20:09:34.561Z (about 1 month ago)
- Topics: actions, javascript, milestones
- Language: JavaScript
- Homepage:
- Size: 575 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# create-milestone-action
Create a new milestone or return an existing one. Pure JS action.The action is written in JavaScript for speed of execution.
## Inputs
### `token`
**Required** GitHub Token.
### `title`
**Required** The title of a milestone.
### `state`
The state of a milestone. Either `open` or `closed`. Default `open`.
### `description`
The description of a milestone.
### `due_on`
The due date of a milestone. Timestamp in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.
## Outputs
### `id`
An ID of the changed milestone.
### `number`
A Number of the changed milestone.
### `state`
A State of the changed milestone.
### `title`
A Title of the changed milestone.
### `description`
A Description of the changed milestone.
### `due_on`
The due date of the changed milestone.
## Example
```yaml
uses: sv-tools/create-milestone-action@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
title: Next
description: Next Release, To be renamed with a proper semver.
```