Skip to content

v0.1.0

Latest
Compare
Choose a tag to compare
@stefanv stefanv released this 02 Jun 01:01
· 6 commits to main since this release
v0.1.0

An action that attaches the next open milestone to merged PRs.

Currently, this action only looks at milestones that can be parsed as version numbers.

Typical usage:

# .github/workflows/milestone-merged-prs.yaml

name: Milestone

on:
  pull_request_target:
    types:
      - closed

jobs:
  milestone_pr:
    name: attach to PR
    runs-on: ubuntu-latest
    steps:
      - uses: scientific-python/attach-next-milestone@main
        with:
          token: ${{ secrets.MILESTONE_LABELER_TOKEN }}