From 5a9ac2b88ab49d58216257a66ec0d7841a82805f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mar=C3=ADa=20Fernanda=20Magallanes?= <35668326+MaferMazu@users.noreply.github.com> Date: Mon, 1 Apr 2024 17:43:08 -0500 Subject: [PATCH] feat: add workflow to add items to the Dedalo project DS-831 (#58) --- .../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 }}