Skip to content

PrefectDeployment: allow overriding the derived flow name (and deployment name) to match existing deployments #30

PrefectDeployment: allow overriding the derived flow name (and deployment name) to match existing deployments

PrefectDeployment: allow overriding the derived flow name (and deployment name) to match existing deployments #30

Workflow file for this run

---
name: Labeler
"on":
issues:
types:
- opened
jobs:
apply_label:
name: Apply prefect-operator label to all issues
runs-on: ubuntu-latest
steps:
- name: Apply prefect-operator label to all issues
uses: actions/github-script@v9
with:
github-token: ${{secrets.GITHUB_TOKEN}}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['prefect-operator']
})