From af139307a8aa5e1121db287366159021c5b8f4bf Mon Sep 17 00:00:00 2001 From: Maria Fernanda Magallanes Zubillaga Date: Mon, 18 Mar 2024 21:19:39 -0500 Subject: [PATCH] feat: add workflow to add items to the Dedalo project DS-831 --- .../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 }}