commit
6b3fd9b2fd
|
@ -1,16 +1,29 @@
|
||||||
name: Create Board
|
name: Create Board
|
||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_call
|
workflow_call:
|
||||||
|
inputs:
|
||||||
|
token:
|
||||||
|
description: 'Token for accessing private repos'
|
||||||
|
required: false
|
||||||
|
type: string
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
create-board:
|
create-board:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: Set Token
|
||||||
|
run: |
|
||||||
|
if ! [[ -z "${{ inputs.token }}" ]]; then
|
||||||
|
echo "TOKEN=${{ inputs.token }}" >> "$GITHUB_ENV"
|
||||||
|
else
|
||||||
|
echo "TOKEN=${{ github.token }}" >> "$GITHUB_ENV"
|
||||||
|
fi
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.MY_REPO_PAT }}
|
token: ${{ env.TOKEN }}
|
||||||
submodules: recursive
|
submodules: recursive
|
||||||
|
|
||||||
- name: Install kicad
|
- name: Install kicad
|
||||||
|
|
Loading…
Reference in New Issue