Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Md docs #93

Closed
wants to merge 6 commits into from
Closed
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
42 changes: 21 additions & 21 deletions .github/workflows/R.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
---
# This example file will enable R language checks on push or PR to the main
# branch.
# It will also run the checks every weeknight at midnight UTC
#
# Note the @main in `uses:` on the last line. This will call the latest version
# of the workflow from the `main` brnach in the RMI-PACTA/actions repo. You can
# also specify a tag from that repo, or a commit SHA to pin action versions.
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:
#---
## This example file will enable R language checks on push or PR to the main
## branch.
## It will also run the checks every weeknight at midnight UTC
##
## Note the @main in `uses:` on the last line. This will call the latest version
## of the workflow from the `main` brnach in the RMI-PACTA/actions repo. You can
## also specify a tag from that repo, or a commit SHA to pin action versions.
#on:
# pull_request:
# push:
# branches: [main]
# schedule:
# - cron: '0 0 * * 1,2,3,4,5'
# workflow_dispatch:

name: R
#name: R

jobs:
R-package:
name: R Package Checks
uses: RMI-PACTA/actions/.github/workflows/R.yml@main
secrets: inherit
#jobs:
# R-package:
# name: R Package Checks
# uses: RMI-PACTA/actions/.github/workflows/R.yml@main
# secrets: inherit
58 changes: 29 additions & 29 deletions .github/workflows/build-Docker-image-triggers.yml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
---
on:
pull_request:
push:
branches: [main]
schedule:
- cron: '0 0 * * 1,2,3,4,5'
workflow_dispatch:
# ---
# on:
# pull_request:
# push:
# branches: [main]
# schedule:
# - cron: '0 0 * * 1,2,3,4,5'
# workflow_dispatch:

name: docker
# name: docker

jobs:
docker:
name: Docker actions
uses: RMI-PACTA/actions/.github/workflows/docker.yml@main
# jobs:
# docker:
# name: Docker actions
# uses: RMI-PACTA/actions/.github/workflows/docker.yml@main

test:
name: Test
uses: ./.github/workflows/test.yml
needs: [docker]
secrets: inherit
strategy:
fail-fast: false
matrix:
config-name:
- default_2022Q4
- default_2023Q4
- full_params_2022Q4
- full_params_2023Q4
with:
full-image-name: ${{ needs.docker.outputs.full-image-name }}
config-name: ${{ matrix.config-name }}
# test:
# name: Test
# uses: ./.github/workflows/test.yml
# needs: [docker]
# secrets: inherit
# strategy:
# fail-fast: false
# matrix:
# config-name:
# - default_2022Q4
# - default_2023Q4
# - full_params_2022Q4
# - full_params_2023Q4
# with:
# full-image-name: ${{ needs.docker.outputs.full-image-name }}
# config-name: ${{ matrix.config-name }}
17 changes: 17 additions & 0 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
on:
pull_request:
push:
branches: [main]

jobs:
hello_world_job:
runs-on: ubuntu-latest
name: Render JSON Schema Docs
steps:
- id: render-json-schema
uses: RMI-PACTA/actions/actions/json-schema/update-docs@json-schema
with:
input-files: 'inst/extdata/schema'
outputs: 'inst/extdata/schema'
output-format: html
46 changes: 23 additions & 23 deletions .github/workflows/issues-gh-to-ado.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
---
# This example file will enable actions that trigger on created or modified GitHub issues.
#
# Note the @main in `uses:` on the last line. This will call the latest version of the workflow from the `main` branch in the RMI-PACTA/actions repo.
# You can also specify a tag from that repo, or a commit SHA to pin action versions.
on:
issues:
types:
[opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]
issue_comment:
types: [created, edited, deleted]
#---
## This example file will enable actions that trigger on created or modified GitHub issues.
##
## Note the @main in `uses:` on the last line. This will call the latest version of the workflow from the `main` branch in the RMI-PACTA/actions repo.
## You can also specify a tag from that repo, or a commit SHA to pin action versions.
#on:
# issues:
# types:
# [opened, edited, deleted, closed, reopened, labeled, unlabeled, assigned]
# issue_comment:
# types: [created, edited, deleted]

name: GH issues
#name: GH issues

permissions:
issues: write
pull-requests: write
#permissions:
# issues: write
# pull-requests: write

jobs:
issues:
name: Run issues workflows
uses: RMI-PACTA/actions/.github/workflows/issues.yml@main
with:
ado_area_path: "2DegreesInvesting\\GitHub Issues"
secrets:
ADO_TOKEN: ${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}
#jobs:
# issues:
# name: Run issues workflows
# uses: RMI-PACTA/actions/.github/workflows/issues.yml@main
# with:
# ado_area_path: "2DegreesInvesting\\GitHub Issues"
# secrets:
# ADO_TOKEN: ${{ secrets.ADO_PERSONAL_ACCESS_TOKEN }}
Loading
Loading