Skip to content

Commit e1f3816

Browse files
chore: use daily maintanance workflow
1 parent 73bc87c commit e1f3816

2 files changed

Lines changed: 42 additions & 29 deletions

File tree

.github/workflows/daily.yml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# *******************************************************************************
2+
# Copyright (c) 2026 Contributors to the Eclipse Foundation
3+
#
4+
# See the NOTICE file(s) distributed with this work for additional
5+
# information regarding copyright ownership.
6+
#
7+
# This program and the accompanying materials are made available under the
8+
# terms of the Apache License Version 2.0 which is available at
9+
# https://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# SPDX-License-Identifier: Apache-2.0
12+
# *******************************************************************************
13+
14+
name: Daily Maintenance
15+
16+
permissions:
17+
contents: write
18+
issues: write
19+
pull-requests: write
20+
pages: write
21+
id-token: write
22+
23+
on:
24+
# Runs every day at midnight UTC
25+
schedule:
26+
- cron: '0 0 * * *'
27+
28+
# On changes to this workflow file
29+
pull_request:
30+
branches:
31+
- main
32+
paths:
33+
- '.github/workflows/daily.yml'
34+
35+
# Manually trigger the workflow from the GitHub UI
36+
workflow_dispatch: {}
37+
38+
jobs:
39+
maintenance:
40+
# TODO: pin version once stable release is available
41+
# FIXME: @daily will stop working once the branch is deleted, so at least we need to switch to @main before merging this!
42+
uses: eclipse-score/cicd-workflows/.github/workflows/daily.yml@daily

.github/workflows/docs-cleanup.yml

Lines changed: 0 additions & 29 deletions
This file was deleted.

0 commit comments

Comments
 (0)