From 54c66db9b474df85187eb01bace630b376eb95a4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Fernanda=20Magallanes?= <35668326+MaferMazu@users.noreply.github.com> Date: Tue, 19 Mar 2024 16:13:43 -0500 Subject: [PATCH] feat: add workflow to add items to the Dedalo project DS-831 (#49) --- .../add_issues_prs_to_dedalo_project.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/add_issues_prs_to_dedalo_project.yml diff --git a/.github/workflows/add_issues_prs_to_dedalo_project.yml b/.github/workflows/add_issues_prs_to_dedalo_project.yml new file mode 100644 index 0000000..baa954f --- /dev/null +++ b/.github/workflows/add_issues_prs_to_dedalo_project.yml @@ -0,0 +1,17 @@ +name: Add issues and PRs to the Dedalo project + +on: + issues: + types: [opened] + pull_request: + types: [opened] + +jobs: + add-to-project: + name: Add to project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.5.0 + with: + project-url: https://github.com/orgs/eduNEXT/projects/1 + github-token: ${{ secrets.DEDALO_PAT }}