Version Check Github Issue Creator #31
This file contains 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
name: Version Check Github Issue Creator | |
on: | |
schedule: | |
- cron: 0 0 1 * * | |
jobs: | |
create_issue: | |
name: Create issues to update helm chart version | |
runs-on: ubuntu-latest | |
permissions: | |
issues: write | |
steps: | |
- name: Create issues to update helm chart version | |
uses: imjohnbo/issue-bot@572eed14422c4d6ca37e870f97e7da209422f5bd | |
with: | |
title: "Update helm charts version" | |
labels: routine | |
assignees: thaunghtike-share | |
body: | | |
### Update helm charts version | |
- [ ] Karpenter (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L426) | |
- [ ] CSI Secret Store (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L438) | |
- [ ] Metric Server (https://github.com/opszero/terraform-aws-kubespot/blob/main/variables.tf#L384) | |
### Change the value of variables in variables.tf | |
variable "metrics_server_version" { | |
default = "3.8.2" | |
} | |
variable "karpenter_version" { | |
default = "v0.9.1" | |
} | |
variable "csi_secrets_store_version" { | |
default = "1.1.2" | |
} | |
pinned: false | |
close-previous: false | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |