Skip to content

Fix default branch for GitHub Actions workflows #1

Fix default branch for GitHub Actions workflows

Fix default branch for GitHub Actions workflows #1

Workflow file for this run

# yamllint disable rule:document-start
# https://docs.github.com/actions
name: CI
on:
push:
branches:
- develop
pull_request:
branches:
- develop
jobs:
prepare:
name: Prepare
runs-on: ubuntu-latest
outputs:
changed: ${{ steps.list-changed.outputs.changed }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up chart-testing
uses: helm/[email protected]
- name: Run chart-testing (list-changed)
id: list-changed
run: |
changed=$(ct list-changed --config config.yaml)
if [[ -n "$changed" ]]; then
echo "changed=true" >> $GITHUB_OUTPUT
fi
test:
name: Test
if: needs.prepare.outputs.changed == 'true'
needs:
- prepare
uses: ./.github/workflows/test.yml
with:
action-matrix: '["lint", "install", "install --upgrade"]'
release:
name: Release
if: github.ref == 'refs/heads/develop'
uses: ./.github/workflows/release.yml

Check failure on line 49 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 49, Col: 11): Secret GPG_KEY_BASE64 is required, but not provided while calling.
permissions:
contents: write
packages: write
id-token: write
# secrets:
# GPG_KEY_BASE64: ${{ secrets.GPG_KEY_BASE64 }}