Skip to content

chore(renovate): move config file to .github/renovate.json5 #10

chore(renovate): move config file to .github/renovate.json5

chore(renovate): move config file to .github/renovate.json5 #10

Workflow file for this run

name: "[CI] Push Main"
on:
push:
branches:
- main
jobs:
check-changed-files:
name: Check changed files
runs-on: ubuntu-latest
outputs:
isCodeRelatedFilesChanged: ${{ steps.changed-files.outputs.any_changed }}
steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
fetch-depth: 0 # OR "2" -> To retrieve the preceding commit.
- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v36
with:
since_last_remote_commit: true
files: |
src/**
public/**
tailwind.config.js
postcss.config.js
next.config.js
package.json
tsconfig.json
call-metrics-generator:
name: Generate pagespeed metrics
uses: mateusfg7/mfg-b/.github/workflows/pagespeed-metrics.yml@main

Check failure on line 35 in .github/workflows/ci_push-main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci_push-main.yml

Invalid workflow file

error parsing called workflow ".github/workflows/ci_push-main.yml" -> "mateusfg7/mfg-b/.github/workflows/pagespeed-metrics.yml@main" (source branch with sha:c9cdaccc068a657ab3dce5a1698c2285084c4c6f) : workflow is not reusable as it is missing a `on.workflow_call` trigger
needs: check-changed-files
if: needs.check-changed-files.outputs.isCodeRelatedFilesChanged == 'true'
secrets: inherit
with:
target: https://noisekun.vercel.app
pwa: true
call-release:
name: Create a new release
uses: mateusfg7/mfg-b/.github/workflows/release.yml@main
secrets: inherit