mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
19 lines
478 B
YAML
19 lines
478 B
YAML
name: Assign PR to creator
|
|
|
|
# Due to GitHub token limitation, only able to assign org members not authors from forks.
|
|
# https://github.com/thomaseizinger/assign-pr-creator-action/issues/3
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened]
|
|
branches-ignore:
|
|
- l10n_dev
|
|
|
|
jobs:
|
|
automation:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Assign PR to creator
|
|
uses: thomaseizinger/assign-pr-creator-action@v1.0.0
|
|
with:
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|