23 lines
637 B
YAML
23 lines
637 B
YAML
name: Assign to project
|
|
|
|
on:
|
|
issues:
|
|
types: [labeled]
|
|
|
|
env:
|
|
GH_PROJECT_TOKEN: ${{ secrets.OCTAVIA_PAT }}
|
|
|
|
jobs:
|
|
# Simple assignment of issues to projects.
|
|
assign-to-project:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: timroes/assign-to-project-action@0.1.0
|
|
with:
|
|
token: ${{ env.GH_PROJECT_TOKEN }}
|
|
# Specify which label should get added to which project. The project number can be found
|
|
# as part of the URL after projects/<id> when viewing the project on GitHub.
|
|
projects: |
|
|
team/frontend=7
|
|
project/onboarding-improvements=16
|