From e83bbfda94664add07bd62b27168df89942ced94 Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Mon, 8 Jun 2026 16:23:48 -0600 Subject: [PATCH 1/3] Add addtomainproject.yml --- .github/workflows/addtomainproject.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 .github/workflows/addtomainproject.yml diff --git a/.github/workflows/addtomainproject.yml b/.github/workflows/addtomainproject.yml new file mode 100644 index 0000000..e69de29 From 9ac1ca9504d2d19894cab42fb9d2fd2806b692eb Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Mon, 8 Jun 2026 16:28:54 -0600 Subject: [PATCH 2/3] Update addtomainproject.yml --- .github/workflows/addtomainproject.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/.github/workflows/addtomainproject.yml b/.github/workflows/addtomainproject.yml index e69de29..a7fa2f1 100644 --- a/.github/workflows/addtomainproject.yml +++ b/.github/workflows/addtomainproject.yml @@ -0,0 +1,18 @@ +name: Add to Project Workflow +on: + workflow_call: + inputs: + project-url: + description: 'GitHub project URL' + required: false + type: string + default: 'https://github.com/orgs/adaptlearning/projects/2' +jobs: + add-to-project: + name: Add to main project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.1.0 + with: + project-url: ${{ inputs.project-url }} + github-token: ${{ secrets.ADDTOPROJECT_TOKEN }} From 3cf4226d6ababca5fe87074f4cee7db80e4333c0 Mon Sep 17 00:00:00 2001 From: Brad Simpson Date: Wed, 10 Jun 2026 10:39:14 -0600 Subject: [PATCH 3/3] Update add-to-project to 2.0.0 --- .github/workflows/addtomainproject.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/addtomainproject.yml b/.github/workflows/addtomainproject.yml index a7fa2f1..1bbc4a0 100644 --- a/.github/workflows/addtomainproject.yml +++ b/.github/workflows/addtomainproject.yml @@ -12,7 +12,7 @@ jobs: name: Add to main project runs-on: ubuntu-latest steps: - - uses: actions/add-to-project@v0.1.0 + - uses: actions/add-to-project@v2.0.0 with: project-url: ${{ inputs.project-url }} github-token: ${{ secrets.ADDTOPROJECT_TOKEN }}