Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
branches: [main, master, dev]
permissions:
contents: read
jobs:
Expand All @@ -12,6 +12,7 @@ jobs:
with:
tier: unimportant
jags: false
cmdstan: false
tex: false
private: false
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Daily fledge dev-version bump. Calls the reusable engine in poissonconsulting/.github.
# Requires the org-level secrets FLEDGE_APP_ID and FLEDGE_APP_PRIVATE_KEY (passed via
# `secrets: inherit`) and the companion fledge-tag-on-merge.yml workflow in this repo.
# `secrets: inherit`) and the companion fledge-tag-on-merge.yaml workflow in this repo.

name: fledge-bump

Expand All @@ -15,5 +15,5 @@ permissions:

jobs:
fledge-bump:
uses: poissonconsulting/.github/.github/workflows/fledge-bump.yml@v1
uses: poissonconsulting/.github/.github/workflows/fledge-bump.yaml@v1
secrets: inherit
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Tags the dev version on main after a release-path fledge-bump PR merges.
# Required alongside fledge-bump.yml. Calls the reusable engine in poissonconsulting/.github.
# Required alongside fledge-bump.yaml. Calls the reusable engine in poissonconsulting/.github.

name: fledge-tag-on-merge

Expand All @@ -14,5 +14,5 @@ permissions:
jobs:
tag:
if: github.event.pull_request.merged == true && github.event.pull_request.head.ref == 'fledge-bump'
uses: poissonconsulting/.github/.github/workflows/fledge-tag-on-merge.yml@v1
uses: poissonconsulting/.github/.github/workflows/fledge-tag-on-merge.yaml@v1
secrets: inherit
3 changes: 2 additions & 1 deletion .github/workflows/pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
branches: [main, master, dev]
release:
types: [published]
workflow_dispatch:
Expand All @@ -13,5 +13,6 @@ jobs:
pkgdown:
uses: poissonconsulting/.github/.github/workflows/pkgdown.yaml@v1
with:
cmdstan: false
private: false
secrets: inherit
3 changes: 2 additions & 1 deletion .github/workflows/test-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
branches: [main, master, dev]
permissions:
contents: read
jobs:
test-coverage:
uses: poissonconsulting/.github/.github/workflows/test-coverage.yaml@v1
with:
cmdstan: false
tex: false
private: false
secrets: inherit
Loading