Skip to content

Commit

Permalink
Removing auto-assign-issue app in favor of a github action. (#39)
Browse files Browse the repository at this point in the history
* Removing auto-assign-issue app infavor of a github action.

* Using a secret instead of specifying directly my username.
  • Loading branch information
S-Dafarra authored Feb 11, 2021
1 parent 09416d7 commit 529da2c
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/auto-assign-issues.yml

This file was deleted.

15 changes: 15 additions & 0 deletions .github/workflows/assign-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Automatic issue assignment

on:
issues:
types: [opened]

jobs:
auto-assign:
runs-on: ubuntu-latest
steps:
- name: 'Auto-assign issue'
uses: pozil/auto-assign-issue@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
assignees: ${{ secrets.DEFAULT_ISSUE_ASSIGNEE }}

0 comments on commit 529da2c

Please sign in to comment.