mirror of
https://github.com/suyiiyii/nonebot-bison.git
synced 2025-06-05 11:26:43 +08:00
21 lines
567 B
YAML
21 lines
567 B
YAML
setup: true
|
|
version: 2.1
|
|
orbs:
|
|
continuation: circleci/continuation@0.2.0
|
|
workflows:
|
|
setup:
|
|
jobs:
|
|
- continuation/continue:
|
|
configuration_path: ".circleci/main.yml"
|
|
parameters: /home/circleci/params.json
|
|
pre-steps:
|
|
- run:
|
|
command: |
|
|
if [ -z "${CIRCLE_PULL_REQUEST##*/}" ]
|
|
then
|
|
IS_PR=false
|
|
else
|
|
IS_PR=true
|
|
fi
|
|
echo '{ "is_pr": '$IS_PR' }' >> /home/circleci/params.json
|