Skip to content

Commit

Permalink
Merge pull request #24 from sidx1024/sid/diff-test
Browse files Browse the repository at this point in the history
Fix workflow names
  • Loading branch information
sidx1024 authored Apr 4, 2022
2 parents 48a3cdd + 70d05ec commit 02b59a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/base-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: dawidd6/action-download-artifact@v2
continue-on-error: true
with:
workflow: 'main.yml'
workflow: ${{ github.event.pull_request.base.ref == 'main' && 'default-branch.yml' || 'main.yml' }}
workflow_conclusion: success
commit: ${{github.event.pull_request.base.sha}}
name: 'test-coverage-output'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
uses: dawidd6/action-download-artifact@v2
continue-on-error: true
with:
workflow: 'main.yml'
workflow: ${{ github.event.pull_request.base.ref == 'main' && 'default-branch.yml' || 'main.yml' }}
workflow_conclusion: success
commit: ${{github.event.pull_request.base.sha}}
name: 'test-coverage-output'
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,4 @@ run().catch((error) => {
core.setFailed(error.stack || error.message);
});

// 1
// 2

0 comments on commit 02b59a7

Please sign in to comment.