Compare commits

..

2 commits

View file

@ -22,10 +22,10 @@ jobs:
chmod +x tea chmod +x tea
./tea login add --url ${{ github.server_url }} --token ${{ github.token }} ./tea login add --url ${{ github.server_url }} --token ${{ github.token }}
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}') ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}' > release-ticket-id
- name: comment tag start - name: comment tag start
shell: bash shell: bash
run: | run: |
./tea comment ${RELEASE_TICKET_ID} "Start tag" ./tea comment $(cat release-ticket-id) "Start tag"
./tea issues close ${RELEASE_TICKET_ID} ./tea issues close $(cat release-ticket-id)