-
Notifications
You must be signed in to change notification settings - Fork 73
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
1 parent
526787a
commit 31703e4
Showing
2 changed files
with
90 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,76 @@ | ||
# Bitcoin Finality Governor (BFG) | ||
'area: bfg': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "api/bfgapi/**" | ||
- "cmd/bfgd/**" | ||
- "database/bfgd/**" | ||
- "docker/bfgd/**" | ||
- "service/bfg/**" | ||
|
||
# Bitcoin Secure Sequencer (BSS) | ||
'area: bss': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "api/bssapi/**" | ||
- "cmd/bssd/**" | ||
- "docker/bssd/**" | ||
- "service/bss/**" | ||
|
||
# GitHub Actions workflows (CI) | ||
'area: ci': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- ".github/workflows/**" | ||
|
||
# Deucalion (Prometheus service) | ||
'area: deucalion': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "service/deucalion/**" | ||
|
||
# Docker images | ||
'area: docker': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "docker/**" | ||
|
||
# hemictl | ||
'area: hemictl': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "cmd/hemictl/**" | ||
|
||
# @hemilabs/pop-miner NPM package | ||
'area: @hemilabs/pop-miner': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "web/packages/pop-miner/**" | ||
|
||
# Makefiles | ||
'area: make': | ||
- changed-files: | ||
- any-glob-to-any-file: "**/Makefile" | ||
|
||
# WebAssembly PoP Miner | ||
'area: popm/wasm': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "web/popminer/**" | ||
|
||
# PoP Miner | ||
'area: popm': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "cmd/popmd/**" | ||
- "docker/popmd/**" | ||
- "service/popm/**" | ||
|
||
# Tiny Bitcoin Daemon (TBC) | ||
'area: tbc': | ||
- changed-files: | ||
- any-glob-to-any-file: | ||
- "api/tbcapi/**" | ||
- "cmd/tbcd/**" | ||
- "database/tbcd/**" | ||
- "service/tbc/**" |
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,14 @@ | ||
# GitHub Actions workflow to automatically label pull requests. | ||
name: "Label" | ||
on: [ "pull_request_target" ] | ||
|
||
jobs: | ||
labeler: | ||
name: "Pull Request" | ||
runs-on: "ubuntu-latest" | ||
permissions: | ||
contents: read | ||
pull-requests: write | ||
steps: | ||
- name: "Label pull requests" | ||
uses: actions/labeler@v5 |