Given a child zarf definition
# child/zarf.yaml
kind: ZarfPackageConfig
metadata:
name: child-package
values:
files:
- child-values.yamlGiven a child zarf definition
# child/zarf.yaml
kind: ZarfPackageConfig
metadata:
name: child-package
values:
files:
- child-values.yaml| # File: .github/workflows/auto-milestone.yml | |
| name: Auto-Assign Next-Minor Milestone | |
| on: | |
| pull_request: | |
| types: [closed] | |
| jobs: | |
| add-milestone: | |
| if: ${{ github.event.pull_request.merged == true }} |
| package main | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "io/ioutil" | |
| "github.com/qri-io/jsonschema" | |
| ) |