i18n: add matrix info to the FAQ on the mining page [beta] #2
Workflow file for this run
This file contains hidden or 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: PR Comment Workflow | |
| on: | |
| workflow_dispatch: | |
| pull_request_target: | |
| types: [opened] | |
| branches: [beta] | |
| jobs: | |
| comment-on-pr: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Comment coolify preview URL. | |
| uses: actions/github-script@v6 | |
| with: | |
| github-token: ${{secrets.GITHUB_TOKEN}} | |
| script: | | |
| github.rest.issues.createComment({ | |
| issue_number: context.issue.number, | |
| owner: context.repo.owner, | |
| repo: context.repo.repo, | |
| body: `|What|Link|\n|:---:|---|\n|🕵️♂️ Review|[Files changed](https://github.com/${context.repo.owner}/${context.repo.repo}/pull/${context.issue.number}/files)|\n|🌐 Deploy|[Preview #${context.issue.number}](https://${context.issue.number}.beta.monerodevs.org)|` | |
| }) |