Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/siimon/milestone-check-action
https://github.com/siimon/milestone-check-action
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/siimon/milestone-check-action
- Owner: siimon
- License: mit
- Created: 2020-02-25T13:44:36.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T15:42:50.000Z (11 months ago)
- Last Synced: 2024-10-28T14:46:04.667Z (2 months ago)
- Language: TypeScript
- Size: 500 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Milestone check action
This action makes sure a milestone is added to a pull request. If there isn't any, the check fails. However it is a shame that there isn't a `milestoned` event for pull requests so there is not good way to hook this event up.
A best effort config file would look something like this,
```
name: 'Milestone check'
on:
pull_request:
types: [opened, synchronize, reopened, edited, ready_for_review]
pull_request_review:
types: [submitted]
pull_request_review_comment:
types: [created]
push:jobs:
check-milestone:
runs-on: ubuntu-latest
steps:
- uses: siimon/milestone-check-action@releases/v2
```