-
-
Notifications
You must be signed in to change notification settings - Fork 867
Closed
Description
Hello!
Concourse version 3.7.0.
If you have a slash in the name of a job, you cannot trigger it from the UI.
If I replace said /
, with say a .
The trigger button is there as expected.
Triggering via CLI still works as expected
$ fly -t ci trigger-job -j "asdf/ci/show-env.sh"
started asdf/ci/show-env.sh #4
Manifest
---
resources:
- name: test-repo
type: git
source:
uri: https://github.com/simonjohansson/test-repo.git
jobs:
- name: ci/show-env.sh
plan:
- get: test-repo
trigger: true
- task: ci/show-env.sh
config:
platform: linux
image_resource:
type: docker-image
source:
repository: ubuntu
tag: latest
run:
path: ./ci/show-env.sh
dir: test-repo
inputs:
- name: test-repo