Skip to content

Commit

Permalink
👷 Fix string formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Apr 27, 2020
1 parent fa2153f commit 7bd781e
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,28 +8,28 @@ jobs:
steps:
- name: add-potential-bugs-to-to-analyse-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event.label == "type:potential bug" || github.event.label == "type:confirmed bug"
if: github.event.label == 'type:potential bug' || github.event.label == 'type:confirmed bug'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/OctoPrint/OctoPrint/projects/1
GITHUB_PROJECT_COLUMN: To Analyse
- name: add-unreproduced-to-unreproduced-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event.label == "status:unreproduced"
if: github.event.label == 'status:unreproduced'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/OctoPrint/OctoPrint/projects/1
GITHUB_PROJECT_COLUMN: Unreproduced
- name: add-awaiting-information-to-insufficien-information-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event.label == "status:awaiting information"
if: github.event.label == 'status:awaiting information'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/OctoPrint/OctoPrint/projects/1
GITHUB_PROJECT_COLUMN: Insufficient information
- name: add-solved-to-solved-column
uses: docker://takanabe/github-actions-automate-projects:v0.0.1
if: github.event.label == "status:solved"
if: github.event.label == 'status:solved'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_PROJECT_URL: https://github.com/OctoPrint/OctoPrint/projects/1
Expand Down

0 comments on commit 7bd781e

Please sign in to comment.