Skip to content

auto-update of compatibility matrix #4

auto-update of compatibility matrix

auto-update of compatibility matrix #4

Workflow file for this run

name: Compatibility Matrix
on:
release:
types: [created]
pull_request:
types: [opened, synchronize, reopened, edited]
branches:
- main
paths:
- "vendor/**"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
check-if-matrix-is-up-to-date:
name: Execute all helm tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: regenerate the table
run: |
go run hack/compat-matrix/main.go docs/pages/deploying-vclusters/compat-matrix
- name: commit change if needed
run: |
git diff --quiet && git diff --staged --quiet || git commit -am 'updated compatibility matrix'
- name: Push changes
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TO:KEN }}

Check failure on line 32 in .github/workflows/matrix.yaml

View workflow run for this annotation

GitHub Actions / Compatibility Matrix

Invalid workflow file

The workflow is not valid. .github/workflows/matrix.yaml (Line: 32, Col: 25): Unexpected symbol: 'GITHUB_TO:KEN'. Located at position 9 within expression: secrets.GITHUB_TO:KEN
run: git push