From adb3b4cf3358e152f981d45a6560524d0acb00fa Mon Sep 17 00:00:00 2001 From: alstr Date: Tue, 10 Mar 2020 08:41:33 +0000 Subject: [PATCH] Change .yaml extension to .yml --- .github/workflows/workflow.yml | 16 ++++++++++++++++ action.yml | 9 +++++++++ 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/workflow.yml create mode 100644 action.yml diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml new file mode 100644 index 0000000..05f9a9c --- /dev/null +++ b/.github/workflows/workflow.yml @@ -0,0 +1,16 @@ +name: "Workflow" +on: ["push"] +jobs: + build: + runs-on: "ubuntu-latest" + steps: + - uses: "actions/checkout@master" + - name: "TODO to Issue" + uses: "alstr/todo-to-issue-action@master" + with: + REPO: ${{ github.repository }} + BEFORE: ${{ github.event.before }} + SHA: ${{ github.sha }} + TOKEN: ${{ secrets.GITHUB_TOKEN }} + LABEL: "# TODO" + id: "todo" diff --git a/action.yml b/action.yml new file mode 100644 index 0000000..9573a89 --- /dev/null +++ b/action.yml @@ -0,0 +1,9 @@ +name: "TODO to Issue" +description: "Converts IDE TODO comments to GitHub issues" +author: "Alastair Mooney" +runs: + using: "docker" + image: "Dockerfile" +branding: + icon: "check-square" + color: "orange" \ No newline at end of file