From a5c40807839984b644a0f777cae8c46df2066057 Mon Sep 17 00:00:00 2001 From: Daniel Runge Petersen Date: Thu, 19 Sep 2024 09:43:41 +0200 Subject: [PATCH] add TODOS-to-issues github action --- .github/workflows/todos-to-issues.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/todos-to-issues.yaml diff --git a/.github/workflows/todos-to-issues.yaml b/.github/workflows/todos-to-issues.yaml new file mode 100644 index 0000000..2aada93 --- /dev/null +++ b/.github/workflows/todos-to-issues.yaml @@ -0,0 +1,15 @@ +name: "Run TODO to Issue" +on: + push: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: TODO to Issue + uses: alstr/todo-to-issue-action@master + with: + AUTO_ASSIGN: true + ORG_PROJECTS: https://github.com/orgs/AAU-Dat/projects/11 + PROJECTS_SECRET: ${{ secrets.PAT_GITHUB_TOKEN }} \ No newline at end of file