Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/siimon/milestone-check-action


https://github.com/siimon/milestone-check-action

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        


typescript-action status

# 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
```