mirror of
https://github.com/pyscript/pyscript.git
synced 2026-04-13 20:00:15 -04:00
* Add GHA to push issues directly to dashboard * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: mariana <marianameireles@protonmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
19 lines
427 B
YAML
19 lines
427 B
YAML
name: Push issue to Github Project dashboard
|
|
|
|
on:
|
|
issues:
|
|
types:
|
|
- opened
|
|
pull_request_target:
|
|
types:
|
|
- opened
|
|
|
|
jobs:
|
|
add_to_project:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/add-to-project@v0.0.3
|
|
with:
|
|
project-url: https://github.com/orgs/pyscript/projects/4/
|
|
github-token: ${{ secrets.PROJECT_TOKEN }}
|