From 47ee2d059a1fa3fa9731885f17295fbfdf651e0d Mon Sep 17 00:00:00 2001 From: Tom Hudson <34073127+tomhuds@users.noreply.github.com> Date: Tue, 26 Sep 2023 14:01:15 -0700 Subject: [PATCH] Add files via upload --- .github/workflows/add_to_roadmap_project.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .github/workflows/add_to_roadmap_project.yml diff --git a/.github/workflows/add_to_roadmap_project.yml b/.github/workflows/add_to_roadmap_project.yml new file mode 100644 index 000000000..48ce2eba7 --- /dev/null +++ b/.github/workflows/add_to_roadmap_project.yml @@ -0,0 +1,16 @@ +name: Add issue to roadmap project +on: + issues: + types: + - opened +jobs: + add-to-project: + name: Add issue to roadmap project + runs-on: ubuntu-latest + steps: + - uses: actions/add-to-project@v0.4.0 + with: + project-url: https://github.com/orgs/mindsdb/projects/53 + github-token: ${{ secrets.ADD_TO_PROJECT_PAT }} + labeled: bug, enhancement + label-operator: OR \ No newline at end of file