Skip to content

chore: add type in workflow #4

chore: add type in workflow

chore: add type in workflow #4

name: Update dependent projects (ALPHA)
on:
release:
types: [published]
workflow_dispatch:
env:
LIBRARY_NAME: 'gisce/commitlint-rules'
BRANCH_NAME: 'alpha'
DEPENDENT_PROJECTS: 'gisce/ooui.js,gisce/react-formiga-table,gisce/react-ooui,@gisce/powerp.js,gisce/webclient,gisce/conscheck'
jobs:
update-dependents:
if: github.event.release.prerelease == false && !contains(github.event.release.tag_name, '-alpha.') && !contains(github.event.release.tag_name, '-rc.')
runs-on: ubuntu-latest
strategy:
matrix:

Check failure on line 18 in .github/workflows/update_dependent_projects_alpha.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/update_dependent_projects_alpha.yaml

Invalid workflow file

You have an error in your yaml syntax on line 18
project: [${{ env.DEPENDENT_PROJECTS }}]
steps:
- name: Call Reusable Workflow for Each Project
uses: ./.github/workflows/create_dependent_pr.yml
with:
dependentProject: ${{ matrix.project }}
tagName: ${{ github.event.release.tag_name }}
dependentProjectBranch: ${{ env.BRANCH_NAME }}
libraryName: ${{ env.LIBRARY_NAME }}