|
| 1 | +name: Regenerate TOC |
| 2 | +on: |
| 3 | + repository_dispatch: |
| 4 | + types: [regenerate-toc-command] |
| 5 | +jobs: |
| 6 | + regenerate-toc: |
| 7 | + runs-on: ubuntu-latest |
| 8 | + steps: |
| 9 | + - name: Checkout PR branch |
| 10 | + uses: actions/checkout@v4 |
| 11 | + with: |
| 12 | + token: ${{ secrets.SLANGBOT_PAT }} |
| 13 | + repository: ${{ github.event.client_payload.pull_request.head.repo.full_name }} |
| 14 | + ref: ${{ github.event.client_payload.pull_request.head.ref }} |
| 15 | + path: pr-branch |
| 16 | + |
| 17 | + - name: Checkout target branch |
| 18 | + uses: actions/checkout@v4 |
| 19 | + with: |
| 20 | + token: ${{ secrets.SLANGBOT_PAT }} |
| 21 | + repository: ${{ github.event.client_payload.pull_request.base.repo.full_name }} |
| 22 | + ref: ${{ github.event.client_payload.pull_request.base.ref }} |
| 23 | + path: target-branch |
| 24 | + |
| 25 | + - name: Regenerate Table of Contents |
| 26 | + id: regen |
| 27 | + run: | |
| 28 | + ./target-branch/docs/build_toc.sh --source ./pr-branch |
| 29 | +
|
| 30 | + - name: Configure Git commit signing |
| 31 | + id: git-info |
| 32 | + run: | |
| 33 | + echo "${{ secrets.SLANGBOT_SIGNING_KEY }}" > "${{runner.temp}}"/signing_key |
| 34 | + chmod 600 "${{runner.temp}}"/signing_key |
| 35 | + git -C pr-branch config commit.gpgsign true |
| 36 | + git -C pr-branch config gpg.format ssh |
| 37 | + git -C pr-branch config user.signingkey "${{runner.temp}}"/signing_key |
| 38 | + bot_info=$(curl -s -H "Authorization: Bearer ${{ secrets.SLANGBOT_PAT }}" \ |
| 39 | + "https://api.github.com/user") |
| 40 | + echo "bot_identity=$(echo $bot_info | jq --raw-output '.login + " <" + (.id|tostring) + "+" + .login + "@users.noreply.github.com>"')" >> $GITHUB_OUTPUT |
| 41 | + echo "bot_name=$(echo $bot_info | jq --raw-output '.login')" >> $GITHUB_OUTPUT |
| 42 | +
|
| 43 | + - name: Create Pull Request |
| 44 | + id: create-pr |
| 45 | + uses: peter-evans/create-pull-request@v7 |
| 46 | + with: |
| 47 | + token: ${{ secrets.SLANGBOT_PAT }} |
| 48 | + path: pr-branch |
| 49 | + commit-message: "regenerate documentation Table of Contents" |
| 50 | + title: "Regenerate documentation ToC for PR #${{ github.event.client_payload.pull_request.number }}" |
| 51 | + body: "Automated ToC generation for ${{ github.event.client_payload.pull_request.html_url }}" |
| 52 | + committer: ${{ steps.git-info.outputs.bot_identity }} |
| 53 | + author: ${{ steps.git-info.outputs.bot_identity }} |
| 54 | + branch: regenerate-toc-${{ github.event.client_payload.pull_request.number }}-${{ github.event.client_payload.pull_request.head.ref }} |
| 55 | + base: ${{ github.event.client_payload.pull_request.head.ref }} |
| 56 | + push-to-fork: ${{ steps.git-info.outputs.bot_name }}/slang |
| 57 | + delete-branch: true |
| 58 | + |
| 59 | + - name: Comment on PR |
| 60 | + uses: peter-evans/create-or-update-comment@v4 |
| 61 | + if: always() |
| 62 | + with: |
| 63 | + token: ${{ secrets.SLANGBOT_PAT }} |
| 64 | + repository: ${{ github.event.client_payload.github.payload.repository.full_name }} |
| 65 | + issue-number: ${{ github.event.client_payload.pull_request.number }} |
| 66 | + body: | |
| 67 | + ${{ |
| 68 | + steps.regen.conclusion == 'failure' |
| 69 | + && format('❌ Table of Contents generation failed. Please check the [workflow run](https://github.com/{0}/actions/runs/{1})', github.repository, github.run_id) |
| 70 | + || (steps.create-pr.conclusion == 'failure' |
| 71 | + && format('❌ Failed to create regenerate ToC pull request. Please check the [workflow run](https://github.com/{0}/actions/runs/{1})', github.repository, github.run_id) |
| 72 | + || format('🌈 Regenerated Table of Contents, please merge the changes from [this PR]({0})', steps.create-pr.outputs.pull-request-url)) |
| 73 | + }} |
| 74 | +
|
| 75 | + - name: Add reaction |
| 76 | + uses: peter-evans/create-or-update-comment@v4 |
| 77 | + with: |
| 78 | + token: ${{ secrets.SLANGBOT_PAT }} |
| 79 | + repository: ${{ github.event.client_payload.github.payload.repository.full_name }} |
| 80 | + comment-id: ${{ github.event.client_payload.github.payload.comment.id }} |
| 81 | + reactions-edit-mode: replace |
| 82 | + reactions: hooray |
0 commit comments