Compare commits
2 commits
e3065c1b0f
...
06bcc49ab4
Author | SHA1 | Date | |
---|---|---|---|
06bcc49ab4 | |||
7c75411590 |
1 changed files with 14 additions and 2 deletions
|
@ -21,11 +21,23 @@ jobs:
|
|||
mv tea* tea
|
||||
chmod +x tea
|
||||
./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 }}' | awk '{print $1}')
|
||||
echo ${RELEASE_TICKET_ID}
|
||||
|
||||
- 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}'
|
||||
|
||||
- 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 }}
|
||||
|
|
Loading…
Add table
Reference in a new issue