Skip to content

Commit

Permalink
Harmonize yaml formatting (#20)
Browse files Browse the repository at this point in the history
* Harmonize yaml formatting

Closes #19

* revert changes to matrix section
  • Loading branch information
IndrajeetPatil committed Oct 17, 2022
1 parent 3da759d commit 9b5f1d2
Show file tree
Hide file tree
Showing 14 changed files with 23 additions and 23 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/R-CMD-check-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
# Can't be run as part of commits
on:
schedule:
- cron: '5 0 * * *' # 05:00 UTC every day only run on main branch
- cron: "5 0 * * *" # 05:00 UTC every day only run on main branch
push:
branches:
- "cran-*"
- "cran-*"
tags:
- "v*"
- "v*"

name: rcc dev

Expand Down Expand Up @@ -97,8 +97,8 @@ jobs:

R-CMD-check-dev:
needs:
- matrix
- R-CMD-check-base
- matrix
- R-CMD-check-base

runs-on: ubuntu-18.04

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/R-CMD-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- main
- master
schedule:
- cron: '10 0 * * *'
- cron: "10 0 * * *"

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || '' }}-${{ github.base_ref || '' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Actions to check an R package'
name: "Actions to check an R package"
inputs:
results:
description: Slug for check results
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/commit/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to commit changes to the repository'
name: "Action to commit changes to the repository"
outputs:
sha:
description: "SHA of generated commit"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dep-matrix/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Actions to compute a matrix with all dependent packages'
name: "Actions to compute a matrix with all dependent packages"
outputs:
matrix:
description: "Generated matrix"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/get-extra/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to determine extra packages to be installed'
name: "Action to determine extra packages to be installed"
outputs:
packages:
description: "List of extra packages"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/git-identity/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Actions to set up a Git identity'
name: "Actions to set up a Git identity"

runs:
using: "composite"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/install/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Actions to run for installing R packages'
name: "Actions to run for installing R packages"
inputs:
token:
description: GitHub token, set to secrets.GITHUB_TOKEN
Expand All @@ -14,7 +14,7 @@ inputs:
needs:
description: Passed on to r-lib/actions/setup-r-dependencies@v2
required: false
default: ''
default: ""
extra-packages:
description: Passed on to r-lib/actions/setup-r-dependencies@v2
required: false
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/lock.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: 'Lock threads'
name: "Lock threads"

on:
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
lock:
Expand All @@ -11,8 +11,8 @@ jobs:
- uses: dessant/lock-threads@v2
with:
github-token: ${{ github.token }}
issue-lock-inactive-days: '365'
issue-lock-reason: ''
issue-lock-inactive-days: "365"
issue-lock-reason: ""
issue-lock-comment: >
This old thread has been automatically locked. If you think you have
found something related to this, please open a new issue and link to this
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown-build/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to build a pkgdown website'
name: "Action to build a pkgdown website"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgdown-deploy/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to deploy a pkgdown website'
name: "Action to deploy a pkgdown website"

runs:
using: "composite"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rate-limit/action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: 'Check GitHub rate limits'
name: "Check GitHub rate limits"
inputs:
token: # id of input
token: # id of input
description: GitHub token, pass secrets.GITHUB_TOKEN
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/roxygenize/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to create documentation with roxygen2'
name: "Action to create documentation with roxygen2"

runs:
using: "composite"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style/action.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'Action to auto-style a package'
name: "Action to auto-style a package"

runs:
using: "composite"
Expand Down

0 comments on commit 9b5f1d2

Please sign in to comment.