fix: add token #1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger dependencies update | ||
on: | ||
workflow_call: | ||
inputs: | ||
TARGET: | ||
description: Target repo to trigger update dependencies on | ||
required: true | ||
type: string | ||
secrets: | ||
GITHUB_TOKEN: | ||
Check failure on line 11 in .github/workflows/trigger-update-dependencies.yml GitHub Actions / .github/workflows/trigger-update-dependencies.ymlInvalid workflow file
|
||
description: Token to use to trigger update dependencies | ||
required: true | ||
jobs: | ||
trigger-update: | ||
name: Trigger dependencies update | ||
runs-on: ubuntu-latest | ||
steps: | ||
- run: gh workflow run composer-update.yml --repo=Humanoidfr/${{ inputs.TARGET }} --ref=main | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |