19 lines
471 B
YAML
19 lines
471 B
YAML
name: Auto-add issues and PRs to Project
|
|
|
|
on:
|
|
issues:
|
|
types: [opened, reopened]
|
|
pull_request:
|
|
types: [opened, reopened]
|
|
|
|
jobs:
|
|
add-to-project:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Add issue or PR to project
|
|
uses: actions/add-to-project@1b844f0c5ac6446a402e0cb3693f9be5eca188c5 # v0.6.1
|
|
continue-on-error: true
|
|
with:
|
|
project-url: ${{ secrets.PROJECT_URL }}
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|