Compare commits

..

No commits in common. "06bcc49ab4a4a6d695de4314f72987046ed807f9" and "e3065c1b0f54d3d8e60763974ca04594f137d107" have entirely different histories.

View file

@ -21,23 +21,11 @@ jobs:
mv tea* tea
chmod +x tea
./tea login add --url ${{ github.server_url }} --token ${{ github.token }}
- name: debug 1
shell: bash
run: ./tea i ls --fields index,title --output simple
- name: debug 2
shell: bash
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}'
- name: debug 3
shell: bash
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}' | awk '{print $1}'
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}' | awk '{print $1}')
echo ${RELEASE_TICKET_ID}
- name: comment tag start
shell: bash
run: |
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref }}' | awk '{print $1}')
./tea comment ${RELEASE_TICKET_ID} "Start tag"
./tea issues close ${{ github.event.issue.number }}