```yaml
image: amazonlinux:latest
pipelines:
custom:
hello:
- variables:
- name: target
- name: message
- step:
name: "Helloと挨拶して一言喋る"
script:
- echo "Hello, ${target}! ${message}"
sorry:
- variables:
- name: target
- name: message
- step:
name: "Sorryと謝罪して一言喋る"
script:
- echo "Sorry, ${target}.. ${message}"
```
## 参考
- [Predefine values of custom pipeline variables \- Bitbucket](https://bitbucket.org/blog/predefine-values-of-custom-pipeline-variables)
- [Bitbucket Pipelinesの逆引きレシピ|NAVITIME\_Tech|note](https://note.com/navitime_tech/n/n037aa5426a04#WQawV)