Skip to content

Workflow file for this run

name: dispatch scrap update
on:
workflow_call:
inputs:
issue_number:
description: 'Issue number'
type: number
required: true
secrets:
github_token:

Check failure on line 11 in .github/workflows/_create-scrap.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/_create-scrap.yml

Invalid workflow file

secret name `github_token` within `workflow_call` can not be used since it would collide with system reserved name
description: 'github token'
required: true
jobs:
create-scrap:
runs-on: ubuntu-latest
steps:
- name: create scrap
uses: ./packages/action-create-scrap
with:
issue_number: ${{ github.event.inputs.issue_number }}
github_token: ${{ secrets.github_token }}