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
7 changes: 5 additions & 2 deletions .github/workflows/add-update-label-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,15 @@ name: Add Update Label Weekly - ATO
# `github-actions/workflow-configs/add-update-label-weekly-config.yml`
# `github-actions/workflow-configs/templates/add-update-instructions-template.md`
# Customization notes:
# Change cron as needed- currently runs Fri 0700 UTC, exc. July and December
# Runs Wed 2200 UTC, exc. July and December.
# 2200 UTC is 3:00 PM Pacific during daylight saving (PDT) and 2:00 PM Pacific outside it (PST):
# GitHub cron is always UTC and does not follow DST, so the local time shifts by an hour on
# 1 Nov 2026 and back on 8 Mar 2027. Change to '0 23' if 3:00 PM PST matters more than 3:00 PM PDT.
# ⮡ You can compose a schedule here: https://crontab.cronhub.io/

on:
schedule:
- cron: '0 7 * 1-6,8-11 5'
- cron: '0 22 * 1-6,8-11 3'
workflow_dispatch:
inputs:
dry-run:
Expand Down
21 changes: 10 additions & 11 deletions github-actions/workflow-configs/add-update-label-weekly-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,16 +57,15 @@

labels:
required:
statusUpdated: "status: updated" # <-- confirm default label name
statusInactive1: "status: to update!" # <-- confirm default label name
statusInactive2: "status: 2 weeks inactive" # <-- confirm default label name
statusHelpWanted: "status: help wanted" # <-- confirm default label name
statusUpdated: "status: updated"
statusInactive1: "status: to update!"
statusInactive2: "status: 2 weeks inactive"
statusHelpWanted: "status: help wanted"

filtering:
- "draft" # <-- confirm default label name
- "er" # <-- confirm default label name
- "epic" # <-- confirm default label name
- "dependency" # <-- confirm default label name
- "draft"
- "epic"
- "dependency"
# - "" # <-- Uncomment and add label name if needed.
# - "" # <-- Uncomment and add label name if needed.

Expand Down Expand Up @@ -145,9 +144,9 @@ timeframes:
# confirmed the values, **delete the comment**.

projectBoard:
targetStatus: "In progress (actively working)" # <-- confirm default value
questionsStatus: "Questions / In Review" # <-- confirm default value
# projectNumber: 123 # <-- uncomment and set to your board's number
targetStatus: "In progress (actively working)"
questionsStatus: "Questions/Review"
projectNumber: 73



Expand Down