Skip to content

Commit ede9dfc

Browse files
Merge pull request #2837 from lukaszstolarczuk/cleanup
Cleanup workflows and README
2 parents 21bb6fb + dfe5dc2 commit ede9dfc

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

.github/workflows/mirror-intel-llvm-commits.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ name: Mirror intel/llvm commits
55

66
on:
77
workflow_dispatch:
8+
# Runs daily at midnight (UTC)
89
schedule:
910
- cron: "0 0 * * *"
1011

.github/workflows/pr-migration-auto-close.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Auto-Close PRs
22

33
on:
44
schedule:
5-
- cron: '0 0 * * *' # Runs daily at midnight (UTC)
6-
workflow_dispatch: # Allows manual triggering
5+
# Runs every second day at noon UTC
6+
- cron: '0 12 */2 * *'
7+
workflow_dispatch:
78

89
permissions:
910
pull-requests: write

.github/workflows/pr-migration-warn.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@ name: Warn about intel/llvm migration
22

33
on:
44
schedule:
5-
- cron: '0 * * * *' # Runs hourly
6-
workflow_dispatch: # Allows manual triggering
5+
# Runs at 1:00 and 13:00 UTC daily
6+
- cron: '0 1,13 * * *'
7+
workflow_dispatch:
78

89
permissions:
910
pull-requests: write

.github/workflows/trivy.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ name: Trivy
33

44
on:
55
workflow_dispatch:
6+
schedule:
7+
# Runs at 22:45 UTC on Thursday.
8+
- cron: '45 22 * * 4'
69
push:
710
pull_request:
811
paths:

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# Unified Runtime
22

33
[![Deploy documentation to Pages](https://github.com/oneapi-src/unified-runtime/actions/workflows/docs.yml/badge.svg)](https://github.com/oneapi-src/unified-runtime/actions/workflows/docs.yml)
4-
[![Compute Benchmarks Nightly](https://github.com/oneapi-src/unified-runtime/actions/workflows/benchmarks-nightly.yml/badge.svg)](https://github.com/oneapi-src/unified-runtime/actions/workflows/benchmarks-nightly.yml)
54
[![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/oneapi-src/unified-runtime/badge)](https://securityscorecards.dev/viewer/?uri=github.com/oneapi-src/unified-runtime)
5+
[![Trivy](https://github.com/oneapi-src/unified-runtime/actions/workflows/trivy.yml/badge.svg)](https://github.com/oneapi-src/unified-runtime/actions/workflows/trivy.yml)
66

77
<!-- TODO: add general description and purpose of the project -->
88

@@ -28,6 +28,12 @@
2828

2929
## Contents of the project
3030

31+
⚠️ **This repository is only a mirror.**
32+
33+
The source code of Unified Runtime has been moved to [intel/llvm](https://github.com/intel/llvm)
34+
under the [unified-runtime](https://github.com/intel/llvm/tree/sycl/unified-runtime) top-level directory,
35+
all future development will now be carried out there.
36+
3137
This project contains the following:
3238

3339
- API specification in YaML

0 commit comments

Comments
 (0)