Skip to content

Commit

Permalink
Adjust TODO workflow
Browse files Browse the repository at this point in the history
Add provisioning to provision
  • Loading branch information
Gum-Joe committed Dec 18, 2020
1 parent 4ca7249 commit 8e838d0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 7 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/todo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
name: "TODO issue creator"
on: ["push"]
jobs:
build:
todo:
name: TODO to Issue
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@master"
Expand All @@ -16,6 +17,21 @@ jobs:
LABEL: "// TODO:"
COMMENT_MARKER: "//"
id: "todo"
- name: "TODO to Issue for Python"
uses: "alstr/[email protected]"
with:
REPO: ${{ github.repository }}
BEFORE: ${{ github.event.before }}
SHA: ${{ github.sha }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
LABEL: "# TODO:"
COMMENT_MARKER: "#"
id: "todopy"
fixme:
name: FIXME to Issue
runs-on: "ubuntu-latest"
steps:
- uses: "actions/checkout@master"
- name: "FIXME to Issue"
uses: "alstr/[email protected]"
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,9 @@
---
- hosts: all
tasks:
# TODO: Reenable when it works
# - name: Provision 2Keys client
# become: true
# command: 2Keys provision -f /vagrant/config/client.yml
- name: Is 2Keys there?
# Provisions 2Keys detector software
# TODO: Publish detector module/install locally to ensure this works, and then prevent ansible ignoring errors here
- name: Provision 2Keys client
become: true
command: 2Keys --help
ignore_errors: yes # Remove this when provision works
command: 2Keys provision -f /vagrant/config/provision.yml #

0 comments on commit 8e838d0

Please sign in to comment.