-
Notifications
You must be signed in to change notification settings - Fork 59
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
30 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,30 @@ | ||
# **what?** | ||
# Cleanup branches left over from automation and testing. Also cleanup | ||
# draft releases from release testing. | ||
|
||
# **why?** | ||
# The automations are leaving behind branches and releases that clutter | ||
# the repository. Sometimes we need them to debug processes so we don't | ||
# want them immediately deleted. Running on Saturday to avoid running | ||
# at the same time as an actual release to prevent breaking a release | ||
# mid-release. | ||
|
||
# **when?** | ||
# Mainly on a schedule of 12:00 Saturday. | ||
# Manual trigger can also run on demand | ||
|
||
name: Repository Cleanup | ||
|
||
on: | ||
schedule: | ||
- cron: '0 12 * * SAT' # At 12:00 on Saturday - details in `why` above | ||
|
||
workflow_dispatch: # for manual triggering | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
cleanup-repo: | ||
uses: dbt-labs/actions/.github/workflows/repository-cleanup.yml@main | ||
secrets: inherit |