RUN-3875 Add API documentation for managing runner replicas #368
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request_target: | |
| types: [opened, synchronize, reopened, milestoned, demilestoned] | |
| branches: | |
| - 4.0.x | |
| jobs: | |
| milestonecheck: | |
| permissions: | |
| pull-requests: read | |
| name: PR Milestone Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: PR requires a milestone | |
| run: | | |
| MILESTONE=$(gh pr view $PR --json milestone -q .milestone) | |
| if [ $? != 0 ] ; then | |
| echo "Failed" | |
| exit 1 | |
| fi | |
| if [ -z "$MILESTONE" ] ; then | |
| echo "::notice::Milestone is required" | |
| exit 2 | |
| fi | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| PR: ${{ github.event.pull_request.html_url }} |