We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0b756e4 commit e0265c1Copy full SHA for e0265c1
.github/workflows/analyze.yml
@@ -63,7 +63,15 @@ jobs:
63
- name: Copy files to results bucket
64
run: aws s3 cp ./results s3://cellpack-results/${{ github.ref_name }}/ --recursive --acl public-read
65
- uses: iterative/setup-cml@v1
66
- - name: Update comment
+ - name: Update comment for dependabot
67
+ if: ${{ github.actor == 'dependabot[bot]' }}
68
+ env:
69
+ REPO_TOKEN: ${{ secrets.DEPENDABOT_TOKEN }}
70
+ run: |
71
+ cml comment update --watermark-title="{workflow} report" ./results/analysis_report.md --target=pr
72
+ cat ./results/analysis_report.md
73
+ - name: Update comment for PR
74
+ if: ${{ github.actor != 'dependabot[bot]' }}
75
env:
76
REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
77
run: |
0 commit comments