Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
50 commits
Select commit Hold shift + click to select a range
413056c
Create maintain.yaml
jbousquin Sep 25, 2025
d24be95
Update maintain.yaml
jbousquin Sep 25, 2025
e30826a
Update maintain.yaml
jbousquin Sep 25, 2025
b2103fc
Update maintain.yaml
jbousquin Sep 25, 2025
edcbc45
Update Notebook
github-actions[bot] Sep 25, 2025
40d92af
Update maintain.yaml
jbousquin Sep 25, 2025
353b3b2
Add example data refresh as additional steps in existing workflow (sh…
jbousquin Sep 29, 2025
f89f778
Update reference files
github-actions[bot] Sep 29, 2025
792e231
Try adding to namespace using library() again? Otherwise, and/or may …
jbousquin Sep 29, 2025
3d748a1
Merge branch '657-bot-updates-for-maintenance-tasks' of https://githu…
jbousquin Sep 29, 2025
292db32
Update example data
github-actions[bot] Sep 29, 2025
1c8c265
Update maintain.yaml
jbousquin Sep 29, 2025
ab46365
Run on "develop" not "main
jbousquin Sep 29, 2025
79bdc52
Resolve reviewer comment
jbousquin Sep 29, 2025
df1286f
Update maintain.yaml
jbousquin Sep 29, 2025
5ca71de
ref token for actions/checkout
jbousquin Sep 30, 2025
a10dfd6
Update reference files
github-actions[bot] Sep 30, 2025
390b4ee
Update example data
github-actions[bot] Sep 30, 2025
a86a255
Add checks as part of commit
jbousquin Sep 30, 2025
5a30497
Update example data
github-actions[bot] Sep 30, 2025
e166253
revert maintain.yaml
jbousquin Sep 30, 2025
53c8523
Update maintain.yaml
jbousquin Sep 30, 2025
b83cd35
Update maintain.yaml
jbousquin Sep 30, 2025
df7bf5a
Update maintain.yaml
jbousquin Sep 30, 2025
cd75520
Update maintain.yaml
jbousquin Sep 30, 2025
632688b
Update maintain.yaml
jbousquin Sep 30, 2025
97cba18
Revert maintain.yaml
jbousquin Sep 30, 2025
1fe44cf
Update example data
github-actions[bot] Sep 30, 2025
75843fe
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Sep 30, 2025
9b9aa19
add library(remotes)
cristinamullin Sep 30, 2025
e9b8836
Update example data
github-actions[bot] Sep 30, 2025
66c2fac
Update maintain.yaml
jbousquin Oct 2, 2025
b711ee1
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 3, 2025
3ec8730
Update reference files
github-actions[bot] Oct 4, 2025
a0905a1
Update example data
github-actions[bot] Oct 4, 2025
7dabb61
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 9, 2025
97c5d89
Merge branch 'maintenance-branch' into 657-bot-updates-for-maintenanc…
cristinamullin Oct 9, 2025
ca2dfa3
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 14, 2025
4f7a6eb
use new maintain functions
cristinamullin Oct 14, 2025
a5e07b6
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 14, 2025
5c33f73
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 16, 2025
a3d477f
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Oct 20, 2025
1b7119f
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Nov 13, 2025
18072b1
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Nov 20, 2025
8cd9a53
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Dec 12, 2025
ae0f6c6
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
cristinamullin Dec 15, 2025
4daa67b
Rename maintain.yaml to maintenance-update.yaml
jbousquin Dec 18, 2025
01a8445
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
jbousquin Dec 18, 2025
1fa4933
Update maintenance-scheduled.yaml
jbousquin Dec 18, 2025
32a4184
Merge branch 'develop' into 657-bot-updates-for-maintenance-tasks
jbousquin Dec 18, 2025
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
2 changes: 0 additions & 2 deletions .github/workflows/maintenance-scheduled.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ on:
# Daily at 2:01AM https://crontab.guru/
schedule:
- cron: '1 2 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
maintenance_updates:
Expand Down
66 changes: 66 additions & 0 deletions .github/workflows/maintenance-update.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
name: Component File Update

on:
# pull_request:
# branches:
# [develop]
workflow_dispatch:

jobs:
maintenance_updates:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout repo
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}

- name: Setup R
uses: r-lib/actions/setup-r@v2
with:
use-public-rspm: true

- name: Install dependencies
uses: r-lib/actions/setup-r-dependencies@v2

- name: Install EPATADA package
run: |
install.packages("remotes")
library(remotes)
remotes::install_github("USEPA/EPATADA", ref = "develop", dependencies = TRUE, force = TRUE)
shell: Rscript {0}

- name: Update reference files
run: |
library(EPATADA)
EPATADA:::.TADA_UpdateRefFiles()
shell: Rscript {0}

- name: Commit updated reference files
uses: EndBug/add-and-commit@v9
with:
author_name: 'github-actions[bot]'
author_email: 'github-actions[bot]@users.noreply.github.com'
message: "Update reference files"
add: '[./inst/extdata/*]'

- name: Update example data
run: |
library(EPATADA)
EPATADA:::.TADA_UpdateExampleData()
shell: Rscript {0}

- name: Commit updated example data
uses: EndBug/add-and-commit@v9
with:
author_name: 'github-actions[bot]'
author_email: 'github-actions[bot]@users.noreply.github.com'
message: "Update example data"
add: '[./data/*]'

# - uses: pre-commit/[email protected]
# with:
# extra_args: --files = '[./data/*, ./inst/extdata/*]'