helm-weekly-release-pr #687
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: helm-weekly-release-pr | |
on: | |
schedule: | |
- cron: '0 10 * * 1-5' # 10 UTC on weekdays; if we miss published images one day, they should align the day after | |
workflow_dispatch: # for manual testing | |
# These permissions are needed to assume roles from Github's OIDC. | |
permissions: | |
contents: read | |
id-token: write | |
jobs: | |
weekly-release-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: imjasonh/[email protected] | |
- name: Retrieve GitHub App credentials from Vault | |
id: get-secrets | |
uses: grafana/shared-workflows/actions/[email protected] | |
with: | |
repo_secrets: | | |
APP_ID=mimir-github-bot:app_id | |
PRIVATE_KEY=mimir-github-bot:private_key | |
- name: Generate GitHub App token | |
id: app-token | |
uses: actions/create-github-app-token@v1 | |
with: | |
app-id: ${{ env.APP_ID }} | |
private-key: ${{ env.PRIVATE_KEY }} | |
owner: ${{ github.repository_owner }} | |
- name: Update/regenerate files | |
id: update | |
run: bash .github/workflows/scripts/helm-weekly-release.sh | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ steps.app-token.outputs.token }} | |
title: Release mimir-distributed Helm chart ${{ steps.update.outputs.new_chart_version }} | |
body: Automated PR created by [helm-weekly-release-pr.yaml](https://github.com/grafana/mimir/blob/main/.github/workflows/helm-weekly-release-pr.yaml) | |
commit-message: Update mimir-distributed chart to ${{ steps.update.outputs.new_chart_version }} | |
author: grafanabot <[email protected]> | |
branch: helm-chart-weekly-${{ steps.update.outputs.new_chart_version }} | |
base: main | |
labels: helm |