Skip to content

Commit

Permalink
Add auto-assign GH action (#23)
Browse files Browse the repository at this point in the history
Resolves: #22

Signed-off-by: Sergio Arroutbi <sarroutb@redhat.com>
  • Loading branch information
sarroutbi authored Nov 24, 2024
1 parent 7dcfb1b commit af3778b
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/auto-assign.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Auto Assign
"on":
issues:
types: [opened]
pull_request:
types: [opened]
jobs:
run:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@latest
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: sarroutbi
numOfAssignee: 1
4 changes: 2 additions & 2 deletions .github/workflows/spellcheck.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Check Spelling
uses: rojopolis/spellcheck-github-actions@0.23.0
uses: rojopolis/spellcheck-github-actions@0.45.0
with:
config_path: .spellcheck.yaml
task_name: Markdown

0 comments on commit af3778b

Please sign in to comment.