Skip to content

style: use announcement bar (#54) #36

style: use announcement bar (#54)

style: use announcement bar (#54) #36

Workflow file for this run

# Workflow derived from https://github.com/r-lib/actions/tree/master/examples
# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help
on:
push:
branches: main
paths:
- index.qmd
- about.qmd
- posts/*
- .github/workflows/build.yml
- README.qmd
workflow_dispatch:
name: Build
jobs:
build:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v4
- uses: r-lib/actions/setup-r@v2
- uses: r-lib/actions/setup-r-dependencies@v2
with:
packages:
any::knitr
any::rmarkdown
- name: Set up Quarto
uses: quarto-dev/quarto-actions/setup@v2
with:
version: "pre-release"
- name: Render Quarto Project
uses: quarto-dev/quarto-actions/render@v2
- name: Create Pull Request
id: cpr
uses: peter-evans/create-pull-request@v6
with:
commit-message: "ci: automatic website rendering with latest Quarto"
signoff: false
branch: latest-quarto-updates
delete-branch: true
title: "Automatic website rendering with latest Quarto"
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>
committer: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>