HI,
I was able to link my Github build to environments. Now, Jira detects a deployment. It says: Production, however, it was to a Github env called pre-production. I have seen jira reports where the environment was Testing, but I'm unable to get clear how JIRA this determines?
Where can I configure that this specific environment is not production?
I'm not really familiar with the Github Jira integration since I'm only using bitbucket, but according to the documentation, you should be able to provide an environment mapping file where you map the Jira and Github environments:
You can add a file called
.jira/config.yml
to the main branch of your repository with the following content:
deployments:
environmentMapping:
development:
- "dev*"
- "Entwicklung"
- "desenvolvimento"
- "дев"
testing:
- "testes"
- "Test"
- "TST-*"
- "тест"
staging:
- "Pre-Prod"
- "STG-*"
- "staging"
production:
- "Produktion"
- "produção"
- "продакшн"
- "PROD-*"
Hope that helps,
Matthias.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.