mirror of
https://github.com/elgohr/Publish-Docker-Github-Action.git
synced 2026-03-12 18:07:12 -04:00
13 lines
296 B
YAML
13 lines
296 B
YAML
name: Issue assignment
|
|
on:
|
|
issues:
|
|
types: [ opened ]
|
|
jobs:
|
|
auto-assign:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: pozil/auto-assign-issue@v1
|
|
if: github.actor != 'dependabot[bot]'
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
|
assignees: elgohr |