feat: added index.html to tags and archives links #657
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Commenter | |
on: | |
pull_request_target: | |
workflow_run: | |
workflows: ["Benchmark"] | |
types: | |
- completed | |
permissions: | |
contents: read | |
jobs: | |
comment-test: | |
name: How to test | |
permissions: | |
pull-requests: write # for marocchino/sticky-pull-request-comment to create or update PR comment | |
runs-on: ubuntu-latest | |
if: ${{github.event_name == 'pull_request_target'}} | |
steps: | |
- name: Comment PR - How to test | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
header: How to test | |
message: | | |
## How to test | |
```sh | |
git clone -b ${{ github.head_ref }} https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git | |
cd hexo | |
npm install | |
npm test | |
``` | |
comment-flamegraph: | |
name: Flamegraph | |
permissions: | |
pull-requests: write # for marocchino/sticky-pull-request-comment to create or update PR comment | |
actions: read # get artifact | |
runs-on: ubuntu-latest | |
if: ${{github.event_name == 'workflow_run' && github.event.workflow_run.conclusion=='success'}} | |
env: | |
comment_result: ".tmp-comment-flamegraph.md" | |
steps: | |
- name: download artifact | |
uses: actions/download-artifact@v4 | |
with: | |
github-token: ${{secrets.GITHUB_TOKEN}} | |
run-id: ${{toJSON(github.event.workflow_run.id)}} | |
pattern: "comment-*" | |
merge-multiple: true | |
- name: get PR number | |
run: | | |
echo "pr_number=$(cat .tmp-comment-pr_number)" >> "$GITHUB_ENV" | |
- name: combime comment | |
if: ${{env.pr_number!=''}} | |
run: | | |
echo "## Flamegraph" > ${{env.comment_result}} | |
echo "" >> ${{env.comment_result}} | |
cat .tmp-comment-flamegraph-*.md >> ${{env.comment_result}} | |
- name: Comment PR - flamegraph | |
if: ${{env.pr_number!=''}} | |
uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
number: ${{env.pr_number}} | |
header: Flamegraph | |
path: ${{env.comment_result}} |