Compare commits
No commits in common. "b166837cb0ff3852ca51183a32f5fa3c6ddf2e54" and "7c6015e462e8fd4c5a926189bd197bdf5e71716b" have entirely different histories.
b166837cb0
...
7c6015e462
1 changed files with 19 additions and 3 deletions
|
@ -22,10 +22,26 @@ 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}')
|
- name: debug 1
|
||||||
|
shell: bash
|
||||||
|
run: echo 'Release ${{ github.ref_name }}'
|
||||||
|
|
||||||
|
- name: debug 2
|
||||||
|
shell: bash
|
||||||
|
run: ./tea i ls --fields index,title --output simple
|
||||||
|
|
||||||
|
- name: debug 3
|
||||||
|
shell: bash
|
||||||
|
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}'
|
||||||
|
|
||||||
|
- name: debug 4
|
||||||
|
shell: bash
|
||||||
|
run: ./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}'
|
||||||
|
|
||||||
- name: comment tag start
|
- name: comment tag start
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
export RELEASE_TICKET_ID=$(./tea i ls --fields index,title --output simple | grep 'Release ${{ github.ref_name }}' | awk '{print $1}')
|
||||||
|
|
||||||
./tea comment ${RELEASE_TICKET_ID} "Start tag"
|
./tea comment ${RELEASE_TICKET_ID} "Start tag"
|
||||||
./tea issues close ${RELEASE_TICKET_ID}
|
./tea issues close ${{ github.event.issue.number }}
|
||||||
|
|
Loading…
Add table
Reference in a new issue