fix(charts): update helm chart grafana to 6.60.6 - autoclosed #458
Workflow file for this run
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: "Send PRs via git send-email" | |
on: | |
pull_request: | |
types: [ opened, synchronize ] | |
branches: | |
- master | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
components: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Code | |
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4 | |
with: | |
fetch-depth: 0 | |
ref: ${{ github.event.pull_request.head.ref }} | |
- name: Setup Alpine | |
uses: jirutka/setup-alpine@v1 | |
with: | |
packages: > | |
git | |
git-email | |
- name: Send Patch | |
env: | |
GITOPS_EMAIL: ${{ secrets.GITOPS_EMAIL }} | |
SMTP_SERVER: ${{ secrets.SMTP_SERVER }} | |
SMTP_USER: ${{ secrets.SMTP_USER }} | |
SMTP_PASS: ${{ secrets.SMTP_PASS }} | |
run: | | |
sleep 60 | |
git config --global user.name "GitOps Integration" | |
git config --global user.email ${GITOPS_EMAIL} | |
git send-email \ | |
--no-thread \ | |
--quiet \ | |
--confirm=never \ | |
--suppress-cc=all \ | |
--to="${GITOPS_EMAIL}" \ | |
--from="${SMTP_USER}" \ | |
--smtp-server="${SMTP_SERVER}" \ | |
--smtp-server-port=587 \ | |
--smtp-encryption="tls" \ | |
--smtp-user="${SMTP_USER}" \ | |
--smtp-pass="${SMTP_PASS}" \ | |
HEAD~1 | |
shell: alpine.sh {0} |