Create an official Julia environment with precompiled packages #22
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: Docs - PR Cleanup | |
on: | |
pull_request: | |
types: [closed] | |
env: | |
GIT_COMMITTER_NAME: github-actions[bot] | |
GIT_COMMITTER_EMAIL: github-actions[bot]@users.noreply.github.com | |
GIT_AUTHOR_NAME: github-actions[bot] | |
GIT_AUTHOR_EMAIL: github-actions[bot]@users.noreply.github.com | |
concurrency: | |
group: "pages-pr" | |
cancel-in-progress: true | |
jobs: | |
remove-preview-files: | |
# PRs made from forks don't get a preview in the repo | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
runs-on: ubuntu-latest | |
outputs: | |
hash: ${{ steps.commit.outputs.hash }} | |
permissions: | |
contents: write | |
concurrency: | |
group: deploy | |
cancel-in-progress: false | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: gh-pages | |
- name: Remove Preview | |
run: | | |
git rm -rf pr/${{ github.event.number }} | |
- name: Commit and Push | |
id: commit | |
run: | | |
git commit \ | |
-m "Remove Preview for PR#${{ github.event.number }}" \ | |
-m "${{ github.event.pull_request.head.sha }}" | |
git push | |
echo "hash=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT" | |
comment-closed: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: write | |
needs: remove-preview-files | |
steps: | |
- uses: marocchino/sticky-pull-request-comment@v2 | |
with: | |
append: true | |
message: | | |
Preview removed on merge/PR close with ${{ needs.remove-preview-files.outputs.hash }} |