Skip to content

Commit e23275e

Browse files
committed
Move the repository to monorepo.
This commit: - mentions the monorepo in the README.MD. - deprecates the module in favor of go.podman.io/common. - adds github workflow to auto-close newly created PRs. Signed-off-by: Jan Kaluza <[email protected]>
1 parent cd37ef7 commit e23275e

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Close Pull Request
2+
3+
on:
4+
pull_request_target:
5+
types: [opened]
6+
branches:
7+
- main
8+
9+
jobs:
10+
run:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: superbrothers/close-pull-request@v3
14+
with:
15+
comment: "This repository has been migrated to https://github.com/containers/container-libs. Please open your PR there."

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# containers/common
22

3+
> [!WARNING]
4+
> New development of this project happens on https://github.com/containers/container-libs.
5+
> For more information, check https://blog.podman.io/2025/08/upcoming-migration-of-three-containers-repositories-to-monorepo/.
6+
37
Location for shared common files and common go code to manage those files in
48
github.com/containers repos.
59

go.mod

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
// Deprecated: Use go.podman.io/common instead.
12
module github.com/containers/common
23

34
// Warning: Ensure the "go" and "toolchain" versions match exactly to prevent unwanted auto-updates

0 commit comments

Comments
 (0)