Skip to content

feat(base-cluster/limitrange-quotas): add limitrange and resource quota #119

feat(base-cluster/limitrange-quotas): add limitrange and resource quota

feat(base-cluster/limitrange-quotas): add limitrange and resource quota #119

name: Label Chart Pull Request
on:
pull_request:
paths:
- charts/**
types:
- opened
- edited
- reopened
- synchronize
jobs:
getChangedChart:
uses: ./.github/workflows/get-changed-chart.yaml
labelPullRequest:
name: Validate and label PR
runs-on: ubuntu-latest
needs: getChangedChart
steps:
- env:
PR_TITLE: ${{ github.event.pull_request.title }}
GITHUB_TOKEN: ${{ github.token }}
ISSUE_NUMBER: ${{ github.event.number }}
CHANGED_CHART: ${{ needs.getChangedChart.outputs.chart }}
run: |
curl --silent --fail-with-body \
-X POST \
-H 'Accept: application/vnd.github+json' \
-H "Authorization: token ${GITHUB_TOKEN}" \
"${GITHUB_API_URL}/repos/${GITHUB_REPOSITORY}/issues/${ISSUE_NUMBER}/labels" \
-d '{"labels":["'"$CHANGED_CHART"'"]}'