From fa61339a499b13f5e828d61956b1063a7cd7d9eb Mon Sep 17 00:00:00 2001 From: Mariana Meireles Date: Wed, 22 Jun 2022 13:40:31 -0300 Subject: [PATCH] Add GHA to push issues directly to dashboard (#534) * 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 Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- .github/dashboard.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/dashboard.yaml diff --git a/.github/dashboard.yaml b/.github/dashboard.yaml new file mode 100644 index 00000000..ee47b479 --- /dev/null +++ b/.github/dashboard.yaml @@ -0,0 +1,18 @@ +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 }}