mirror of
https://github.com/directus/directus.git
synced 2026-04-03 03:00:39 -04:00
* Changes the token to fallback to github.token * pull_request_target * Update .github/workflows/add-to-project.yml Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch> Co-authored-by: Pascal Jufer <pascal-jufer@bluewin.ch>
20 lines
403 B
YAML
20 lines
403 B
YAML
name: Add issues to Projects (beta)
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
add-to-project:
|
|
name: Add issue to project
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@v0.0.3
|
|
with:
|
|
project-url: https://github.com/orgs/directus/projects/6
|
|
github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}
|