We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d9719 commit 245fa84Copy full SHA for 245fa84
.github/workflows/ci.yml
@@ -45,6 +45,22 @@ permissions:
45
46
jobs:
47
48
+ add_labels:
49
+ name: Adding assignee if there is none.
50
+ runs-on: ubuntu-latest
51
+ steps:
52
+ - uses: actions-ecosystem/action-add-assignees@v1
53
+ if: |
54
+ (
55
+ github.event_name == 'pull_request' &&
56
+ github.actor != 'dependabot[bot]' &&
57
+ github.actor != 'pyansys-ci-bot' &&
58
+ toJson(github.event.pull_request.assignees) == '[]'
59
+ )
60
+ with:
61
+ github_token: ${{ secrets.github_token }}
62
+ assignees: ${{ github.actor }}
63
+
64
update-changelog:
65
name: "Update CHANGELOG (on release)"
66
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
doc/changelog.d/4174.miscellaneous.md
@@ -0,0 +1 @@
1
+Ci: adding auto assignee
0 commit comments