name: CI on: push: branches: ["**"] workflow_dispatch: jobs: load-config: uses: niko/gitea-ci-library/.gitea/workflows/config-provider.yml@plan/0003-alkaa-käyttämään-itseään-commit-raportti with: config_path: feature-env.conf feature: if: github.ref != 'refs/heads/main' needs: [load-config] uses: niko/gitea-ci-library/.gitea/workflows/build-feature.yml@plan/0003-alkaa-käyttämään-itseään-commit-raportti secrets: inherit with: env_json: ${{ needs.load-config.outputs.env_json }} bats-image: bats/bats:latest cucumber-node-image: node:22 main: if: github.ref == 'refs/heads/main' needs: [load-config] uses: niko/gitea-ci-library/.gitea/workflows/build-feature.yml@plan/0003-alkaa-käyttämään-itseään-commit-raportti secrets: inherit with: env_json: ${{ needs.load-config.outputs.env_json }} bats-image: bats/bats:latest cucumber-node-image: node:22