Skip to content

Commit

Permalink
fixed invalid name of github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
AdmiringWorm committed Jun 25, 2020
1 parent 9ad5e16 commit 4e667f9
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/handle-comments.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,21 +72,21 @@ jobs:
} else {
Test-NewIssue -issueNumber ${{ github.event.issue.number }} -repository "${{ github.event.repository.full_name }}"
}
status_recheck:
if: ${{ (needs.comments.outputs.success == 'True' || startsWith(github.event.comment.body, '/status check') && github.event.issue.state == 'open' }}
runs-on: ubuntu-latest
needs: comments
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/[email protected]
- name: Pull latest commits
run: git pull
- name: Run status check on Issue
run: |
Import-Module "${{ github.workspace }}\scripts\validation.psm1"
if ("${{ github.event.comment.body }}" -match "^/status check") {
Update-Issue -issueNumber ${{ github.event.issue.number }} -repository "${{ github.event.repository.full_name }}" -commentUser "${{ github.event.sender.login }}"
} else {
Update-Issue -issueNumber ${{ github.event.issue.number }} -repository "${{ github.event.repository.full_name }}"
}
statusrecheck:
if: ${{ (needs.comments.outputs.success == 'True' || startsWith(github.event.comment.body, '/status check')) && github.event.issue.state == 'open' }}
runs-on: ubuntu-latest
needs: comments
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/[email protected]
- name: Pull latest commits
run: git pull
- name: Run status check on Issue
run: |
Import-Module "${{ github.workspace }}\scripts\validation.psm1"
if ("${{ github.event.comment.body }}" -match "^/status check") {
Update-Issue -issueNumber ${{ github.event.issue.number }} -repository "${{ github.event.repository.full_name }}" -commentUser "${{ github.event.sender.login }}"
} else {
Update-Issue -issueNumber ${{ github.event.issue.number }} -repository "${{ github.event.repository.full_name }}"
}

0 comments on commit 4e667f9

Please sign in to comment.