Skip to content

Commit

Permalink
Wizard actions (#4282)
Browse files Browse the repository at this point in the history
* Add GH action to automatically label community issues

Signed-off-by: Merel Theisen <[email protected]>

* Test action

Signed-off-by: Merel Theisen <[email protected]>

* Undo test stuf

Signed-off-by: Merel Theisen <[email protected]>

* Update label action

Signed-off-by: Merel Theisen <[email protected]>

* Update label action

Signed-off-by: Merel Theisen <[email protected]>

* Add console logs to error

Signed-off-by: Merel Theisen <[email protected]>

---------

Signed-off-by: Merel Theisen <[email protected]>
Signed-off-by: Merel Theisen <[email protected]>
  • Loading branch information
merelcht authored Nov 1, 2024
1 parent 34c42fc commit 85e955b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/label-community-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,13 @@ jobs:
}
} catch (error) {
console.log("%s: Error occured and marked user as notMember", '${{ github.actor }}')
console.log("Error", e.stack);
console.log("Error", e.name);
console.log("Error", e.message);
return "notMember";
}
- name: Label issue if author is from community
if: ${{ steps.membership.outputs.result == 'notMember' }}
uses: actions-ecosystem/action-add-labels@v1
Expand Down

0 comments on commit 85e955b

Please sign in to comment.