-
-
Notifications
You must be signed in to change notification settings - Fork 119
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate issue creation for Quarterly Updates (#3709)
* Automate issue creation for Quarterly Updates * Add date filter and workflow_dispatch
- Loading branch information
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
name: Quarterly Update {{ date | date('[Q]Q YYYY') }} | ||
about: Check-list for integrating the quarterly updates into PUDL | ||
title: "" | ||
labels: data-update | ||
assignees: "" | ||
--- | ||
|
||
### Quarterly Update Check-list | ||
|
||
Once the new archives have been vetted and published, you can begin the process of integrating the new quarterly update data into PUDL. | ||
|
||
Follow the steps in [Existing Data Updates Docs](https://catalystcoop-pudl.readthedocs.io/en/latest/dev/existing_data_updates.html) | ||
|
||
```[tasklist] | ||
- [ ] EIA 860m {{ date | date('[Q]Q YYYY') }} Update | ||
- [ ] EIA 923 {{ date | date('[Q]Q YYYY') }} Update | ||
- [ ] EIA 930 {{ date | date('[Q]Q YYYY') }} Update | ||
- [ ] CEMS {{ date | date('[Q]Q YYYY') }} Update | ||
- [ ] EIA Bulk API {{ date | date('[Q]Q YYYY') }} Update | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
name: quarterly-update-issues | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: "21 8 2 2,5,8,11 *" # 8:21 AM UTC, second of feb, may, aug, nov | ||
|
||
jobs: | ||
create_issue: | ||
name: Create quarterly update issue | ||
runs-on: ubuntu-latest | ||
permissions: | ||
issues: write | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Create quarterly update issue | ||
uses: JasonEtco/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
RUN_URL: ${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | ||
with: | ||
filename: .github/ISSUE_TEMPLATE/quarterly_updates.md |