-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
124 additions
and
95 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
name: Comment on the pull request. | ||
|
||
on: | ||
workflow_run: | ||
workflows: ["Github Pages"] | ||
types: [in_progress, completed] | ||
pull_request_target: | ||
types: [closed] | ||
|
||
jobs: | ||
get-pr-number: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.workflow_run.event == 'pull_request' }} | ||
outputs: | ||
output1: ${{ steps.echo_pr_nb.outputs.pr_number }} | ||
steps: | ||
- name: Download workflow artifact | ||
uses: dawidd6/[email protected] | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
workflow: publish.yml | ||
run_id: ${{ github.event.workflow_run.id }} | ||
- name: Read the pull_request_number.txt file | ||
id: pull_request_number_reader | ||
uses: juliangruber/[email protected] | ||
with: | ||
path: ./pull_request_number/pull_request_number.txt | ||
- name: Echo pull_request_number | ||
id: echo_pr_nb | ||
run: echo "pr_number=${{ steps.pull_request_number_reader.outputs.content }}" >> $GITHUB_OUTPUT | ||
|
||
in-progress: | ||
runs-on: ubuntu-latest | ||
needs: get-pr-number | ||
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.status == 'in_progress' }} | ||
steps: | ||
- name: 'Comment on PR - Waiting for deployment' | ||
uses: hasura/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ needs.get-pr-number.outputs.output1 }} | ||
id: deploy-preview | ||
message: "Starting deployment of preview ⏳..." | ||
on-failure: | ||
runs-on: ubuntu-latest | ||
needs: get-pr-number | ||
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'failure' }} | ||
steps: | ||
- name: 'Comment on PR - Waiting for deployment' | ||
uses: hasura/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ needs.get-pr-number.outputs.output1 }} | ||
id: deploy-preview | ||
message: "⚠️⚠️⚠️ Build Failed: No preview available." | ||
on-success: | ||
runs-on: ubuntu-latest | ||
needs: get-pr-number | ||
if: ${{ github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success' }} | ||
env: | ||
PR_PATH: dipy.org/pull/${{needs.get-pr-number.outputs.output1}} | ||
BASE_URL: https://dipy.github.io/dipy-preview | ||
steps: | ||
- name: Deploy to PR preview | ||
uses: peaceiris/actions-gh-pages@v3 | ||
with: | ||
deploy_key: ${{ secrets.ACTIONS_DEPLOY_TOKEN }} | ||
external_repository: dipy/preview-html | ||
publish_dir: ./_build/html | ||
publish_branch: main | ||
destination_dir: ${{ env.PR_PATH }} | ||
keep_files: true | ||
user_name: 'github-actions[bot]' | ||
user_email: 'github-actions[bot]@users.noreply.github.com' | ||
commit_message: ${{ github.event.head_commit.message }} | ||
- name: Update comment | ||
uses: hasura/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ needs.get-pr-number.outputs.output1 }} | ||
id: deploy-preview | ||
message: "A preview of ${{ github.event.workflow_run.head_commit }} is uploaded and can be seen here:\n\n ✨ ${{ env.BASE_URL }}/${{ env.PR_PATH }} ✨\n\nChanges may take a few minutes to propagate. The source is here: https://github.com/${{ github.repository }}/tree/gh-pages/${{ env.PR_PATH }}/" | ||
on-closed: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.event.action == 'pull_request_target' }} | ||
env: | ||
PR_PATH: pull/${{github.event.number}} | ||
steps: | ||
- name: Checkout website repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: gh-pages | ||
|
||
- name: Delete preview | ||
run: | | ||
git rm -r ${{ env.PR_PATH }} | ||
git commit -m "Delete preview for PR #${{ github.event.number }}" | ||
git push origin gh-pages | ||
- name: Comment on PR | ||
uses: hasura/[email protected] | ||
with: | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
repository: ${{ github.repository }} | ||
number: ${{ github.event.number }} | ||
id: deploy-preview | ||
message: "🪓 PR closed, deleted preview at https://github.com/${{ github.repository }}/tree/gh-pages/${{ env.PR_PATH }}/" | ||
|
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