File tree 2 files changed +0
-7
lines changed
2 files changed +0
-7
lines changed Original file line number Diff line number Diff line change 16
16
token : ${{ secrets.GITHUB_TOKEN }}
17
17
release_label_on_merge :
18
18
needs : get_pr_details
19
- # Maintenance: Conditional isn't working as expected
20
- if : |
21
- needs.get_pr_details.outputs.prAuthor != 'dependabot[bot]'
22
- && needs.get_pr_details.outputs.prIsMerged == true
23
19
runs-on : ubuntu-latest
24
20
steps :
25
21
- name : Debug outputs
Original file line number Diff line number Diff line change 6
6
types :
7
7
- completed
8
8
9
-
10
9
jobs :
11
10
get_pr_details :
12
11
if : ${{ github.event.workflow_run.conclusion == 'success' }}
23
22
run : echo "Outputs ${{ toJSON(needs.get_pr_details.outputs) }}"
24
23
- uses : actions/checkout@v3
25
24
- name : " Ensure related issue is present"
26
- if : contains('["opened", "edited"]', needs.get_pr_details.outputs.prAction)
27
- if : needs.get_pr_details.outputs.prAction == 'opened' || needs.get_pr_details.outputs.prAction == 'edited'
28
25
uses : actions/github-script@v6
29
26
env :
30
27
PR_BODY : ${{ needs.get_pr_details.outputs.prBody }}
You can’t perform that action at this time.
0 commit comments