-
Notifications
You must be signed in to change notification settings - Fork 1
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
1 parent
085e0b6
commit 8d23ea0
Showing
5 changed files
with
160 additions
and
31 deletions.
There are no files selected for viewing
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
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
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 |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: Fast Forward PR | ||
on: | ||
issue_comment: | ||
types: [created] | ||
jobs: | ||
fast_forward_job: | ||
name: Fast Forward | ||
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/fast-forward') | ||
runs-on: ubuntu-latest | ||
steps: | ||
# To use this repository's private action, you must check out the repository | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Basic use case example | ||
- name: Fast Forward PR | ||
id: ff-action | ||
uses: endre-spotlab/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
success_message: 'Success! Fast forwarded ***target_base*** to ***source_head***! ```git checkout target_base && git merge source_head --ff-only``` ' | ||
failure_message: 'Failed! Cannot do fast forward! - try merging the target back into source first.' | ||
name: Fast Forward PR | ||
on: | ||
issue_comment: | ||
types: [created] | ||
|
||
jobs: | ||
fast_forward_job: | ||
name: Fast Forward | ||
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/fast-forward') | ||
runs-on: ubuntu-latest | ||
steps: | ||
# To use this repository's private action, you must check out the repository | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# Basic use case example | ||
- name: Fast Forward PR | ||
id: ff-action | ||
uses: endre-spotlab/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
success_message: 'Success! Fast forwarded ***target_base*** to ***source_head***! ```git checkout target_base && git merge source_head --ff-only``` ' | ||
failure_message: 'Failed! Cannot do fast forward! - try merging the target back into source first.' |
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,87 @@ | ||
# Workflow adjusted from usethis::use_pkgdown_github_pages() to also publish pages from PRs in a subfolder | ||
|
||
on: | ||
push: | ||
branches: [main, master] | ||
pull_request: | ||
branches: [main, master] | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: write | ||
pull-requests: write | ||
|
||
name: pkgdown | ||
|
||
jobs: | ||
pkgdown: | ||
runs-on: ubuntu-latest | ||
# Only restrict concurrency for non-PR jobs | ||
concurrency: | ||
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }} | ||
env: | ||
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: r-lib/actions/setup-pandoc@v2 | ||
|
||
- uses: r-lib/actions/setup-r@v2 | ||
with: | ||
use-public-rspm: true | ||
|
||
- uses: r-lib/actions/setup-r-dependencies@v2 | ||
with: | ||
extra-packages: any::pkgdown, local::. | ||
needs: website | ||
|
||
- name: Build site | ||
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE) | ||
shell: Rscript {0} | ||
|
||
# If not pull request a brand new webpage is deployed | ||
|
||
- name: Deploy to GitHub pages 🚀 | ||
if: github.event_name != 'pull_request' | ||
uses: JamesIves/[email protected] | ||
with: | ||
clean: false | ||
branch: gh-pages | ||
folder: docs | ||
|
||
# If pull request the webpage is deployed inside a dev/"PR number" folder for review | ||
|
||
- name: Add pkgdown PR Comment | ||
uses: marocchino/sticky-pull-request-comment@v2 | ||
if: github.event_name == 'pull_request' | ||
with: | ||
recreate: true | ||
header: pkgdown | ||
message: | | ||
# Github pages | ||
Review the pkgdown webpage for the PR [here](https://${{ github.repository_owner }}.github.io/${{ github.event.repository.name }}/dev/${{ github.event.pull_request.number }}) | ||
- name: Copy page to temp folder | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
mkdir -p /home/runner/work/dev | ||
cp -r ./docs/* /home/runner/work/dev | ||
- name: Check out gh-pages branch | ||
if: github.event_name == 'pull_request' | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: gh-pages | ||
|
||
- name: Copy and push to gh-pages | ||
if: github.event_name == 'pull_request' | ||
run: | | ||
mkdir -p dev/${{ github.event.pull_request.number }} | ||
cp -r /home/runner/work/dev/* ./dev/${{ github.event.pull_request.number }} | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Actions Robot From Github Actions" | ||
git add . | ||
git commit -m "Update gh pages from the PR" | ||
git push |
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 |
---|---|---|
|
@@ -48,3 +48,4 @@ Remotes: | |
hta-pharma/chef | ||
Config/testthat/edition: 3 | ||
VignetteBuilder: knitr | ||
Config/testthat/parallel: true |