We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08f6bd8 commit 5bfe6a0Copy full SHA for 5bfe6a0
.github/workflows/update-observe-frontend.yml
@@ -21,7 +21,7 @@ jobs:
21
find-prs:
22
runs-on: ubuntu-latest
23
outputs:
24
- prs: ${{ steps.find.outputs.prs }}
+ prs: ${{ steps.find.outputs.prs || '[]' }}
25
version: ${{ steps.version.outputs.version }}
26
steps:
27
- name: Extract version from tag
@@ -39,7 +39,7 @@ jobs:
39
- name: Extract ticket from tagged commit
40
id: tickets
41
env:
42
- TAG: ${{ inputs.tag || github.event.release.tag_name || 'v3.214.0' }} # TODO: remove fallback after testing
+ TAG: ${{ inputs.tag || github.event.release.tag_name || '3.214.0' }} # TODO: remove fallback after testing
43
MANUAL_TICKET: ${{ inputs.ticket }}
44
run: |
45
if [ -n "$MANUAL_TICKET" ]; then
0 commit comments