7 lines
148 B
Bash
7 lines
148 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
python /release_drafter.py \
|
|
--token "${INPUT_FORGEJO_TOKEN}" \
|
|
--repo "${INPUT_REPO}" \
|
|
--endpoint "${INPUT_API_ENDPOINT}"
|