diff options
| author | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-13 02:09:57 +0100 |
|---|---|---|
| committer | Christian Marangi <ansuelsmth@gmail.com> | 2023-11-15 10:59:27 +0100 |
| commit | e3a0476d1bdcbf5692e97135d3e653b4cdd84cda (patch) | |
| tree | 2754ff7f9a46a29d46ed68342f25f73ebe94c999 | |
| parent | a4735359aa6d8238bdbeef75b40e98432ef70f0d (diff) | |
| download | upstream-e3a0476d1bdcbf5692e97135d3e653b4cdd84cda.tar.gz upstream-e3a0476d1bdcbf5692e97135d3e653b4cdd84cda.tar.bz2 upstream-e3a0476d1bdcbf5692e97135d3e653b4cdd84cda.zip | |
CI: add issue labeller action
Add issue labeler action. This action will parse BUG issue from the
template and will make validation on the insert data.
The action will:
- Tag the issue with SNAPSHOT or release based on the provided release
- Tag the issue with the reported tag
- Tag the issue with the image kind (Official or Self Built)
- Validate the reported version exist
- Validate the reported release exist
- Validate the reported device exist
Will also tag the issue with useful tag or flag the issue as invalid.
Will also comment the issue with the invalid info provided.
Signed-off-by: Christian Marangi <ansuelsmth@gmail.com>
| -rw-r--r-- | .github/workflows/issue-labeller.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/issue-labeller.yml b/.github/workflows/issue-labeller.yml new file mode 100644 index 00000000000..585bd279e04 --- /dev/null +++ b/.github/workflows/issue-labeller.yml @@ -0,0 +1,11 @@ +name: Issue Labeller
+on:
+ issues:
+ types: [ opened ]
+
+jobs:
+ label-component:
+ name: Validate and Tag Bug Report
+ permissions:
+ issues: write
+ uses: openwrt/actions-shared-workflows/.github/workflows/issue-labeller.yml@main
|
