From 31b650bd1bf516204bda18ec3d6640e7281b6224 Mon Sep 17 00:00:00 2001 From: Sion Kang Date: Fri, 17 Feb 2023 02:45:57 +0900 Subject: [PATCH] ci: add an `add-to-project` workflow --- .github/workflows/add-to-project.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .github/workflows/add-to-project.yml diff --git a/.github/workflows/add-to-project.yml b/.github/workflows/add-to-project.yml new file mode 100644 index 0000000..d309239 --- /dev/null +++ b/.github/workflows/add-to-project.yml @@ -0,0 +1,18 @@ +name: Add bugs to bugs project + +on: + issues: + types: + - opened + +jobs: + add-to-project: + name: Add issue to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.4.0 + with: + # You can target a repository in a different organization + # to the issue + project-url: https://github.com/orgs/lablup/projects/20 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }}