build(deps): bump actions/checkout from 3 to 4 #3
Workflow file for this run
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
name: Auto-Assign | |
on: | |
issues: | |
types: [opened] | |
pull_request: | |
types: [opened] | |
jobs: | |
add-assigness: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: akinocccc/selected-collaborators@v1.1.1 | |
id: candidate | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
- uses: wow-actions/auto-assign@v3 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# using the `org/team_slug` or `/team_slug` syntax to add git team as reviewers | |
reviewers: ${{ steps.candidate.outputs['candidates_string'] }} | |
assignees: ${{ steps.candidate.outputs['candidates_string'] }} | |
skipKeywords: wip, draft | |
- name: Notification | |
uses: wow-actions/auto-comment@v1 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
issuesOpened: | | |
♥️ ${{ steps.candidate.outputs.at_candidates_string }}, please verify the issue as soon as possible. Once it's verified, please reply to @${{ github.event.issue.user.login }} with the next steps and the estimated time required. | |
<!-- AUTO_ASSIGENEES_NOTIFY_HOOK --> | |
pullRequestOpened: | | |
♥️ ${{ steps.candidate.outputs.at_candidates_string }}, please reviews the pull request as soon as possible. | |
<!-- AUTO_ASSIGENEES_NOTIFY_HOOK --> |