This is what github actions currently uses when using ubuntu-latest, and what we recommend for new Consul Democracy installations.
17 lines
329 B
YAML
17 lines
329 B
YAML
name: Assignment management
|
|
|
|
on:
|
|
pull_request_target:
|
|
types: [opened, reopened]
|
|
|
|
permissions:
|
|
pull-requests: write
|
|
|
|
jobs:
|
|
assign-author:
|
|
name: Auto-assign pull request author
|
|
if: github.repository_owner == 'consuldemocracy'
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- uses: toshimaru/auto-author-assign@v2.1.1
|