diff --git a/.github/workflows/sync-eni-max-pods.yaml b/.github/workflows/sync-eni-max-pods.yaml index 8d248042b..da5d07841 100644 --- a/.github/workflows/sync-eni-max-pods.yaml +++ b/.github/workflows/sync-eni-max-pods.yaml @@ -1,9 +1,9 @@ -name: '[Sync] Update eni-max-pods.txt' +name: "[Sync] Update eni-max-pods.txt" on: workflow_dispatch: schedule: # once a day - - cron: '0 0 * * *' + - cron: "0 0 * * *" permissions: id-token: write contents: write @@ -33,20 +33,20 @@ jobs: set -o errexit cd amazon-vpc-cni-k8s/ make generate-limits - cp misc/eni-max-pods.txt ../amazon-eks-ami/src/runtime/eni-max-pods.txt + cp misc/eni-max-pods.txt ../amazon-eks-ami/templates/shared/runtime/eni-max-pods.txt - uses: peter-evans/create-pull-request@v4 with: - branch: update-eni-max-pods - path: amazon-eks-ami/ - add-paths: files/eni-max-pods.txt - commit-message: "Update eni-max-pods.txt" - committer: "GitHub " - author: "GitHub " - labels: | - changelog/exclude - title: "Update eni-max-pods.txt" - body: | - Generated by [aws/amazon-vpc-cni-k8s](https://github.com/aws/amazon-vpc-cni-k8s): - ``` - make generate-limits - ``` + branch: update-eni-max-pods + path: amazon-eks-ami/ + add-paths: templates/shared/runtime/eni-max-pods.txt + commit-message: "Update eni-max-pods.txt" + committer: "GitHub " + author: "GitHub " + labels: | + changelog/exclude + title: "Update eni-max-pods.txt" + body: | + Generated by [aws/amazon-vpc-cni-k8s](https://github.com/aws/amazon-vpc-cni-k8s): + ``` + make generate-limits + ```