Skip to content

Commit cf2b11e

Browse files
committed
build: add codeowners and stale bot
1 parent 6f9c842 commit cf2b11e

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/CODEOWNERS

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# This file provides an overview of responsibilities in this repository.
2+
3+
# Please note that this file does not represent all contributions to the code. What persons and organizations
4+
# actually contributed to each file can be seen on GitHub and is documented in the license headers.
5+
6+
# Linked persons with write permissions are automatically added as reviewers when a pull request is opened.
7+
8+
# Each line is a file pattern followed by one or more contact persons. The last matching pattern has the most precedence.
9+
# For more details, read the following article on GitHub: https://help.github.com/articles/about-codeowners/.
10+
11+
* @technology-edc-committers

.github/workflows/stale-bot.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: Close Inactive Issues
2+
3+
on:
4+
schedule:
5+
- cron: "30 1 * * *" # once a day (1:30 UTC)
6+
workflow_dispatch: # allow manual trigger
7+
8+
jobs:
9+
trigger-workflow:
10+
uses: eclipse-edc/.github/.github/workflows/stale-bot.yml@main
11+
secrets:
12+
envGH: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)