We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6043777 commit 51b0a1aCopy full SHA for 51b0a1a
lib/node_modules/@stdlib/_tools/scripts/templates/workflow_test_install.yml.txt
@@ -50,8 +50,8 @@ jobs:
50
env:
51
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
52
53
- # Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
54
- if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' }}
+ # Run workflow job if `publish` workflow run is successful or when the workflow is manually triggered or on a schedule:
+ if: ${{ github.event.workflow_run.conclusion == 'success' || github.event_name == 'workflow_dispatch' || github.event_name == 'schedule' }}
55
56
# Define the sequence of job steps...
57
steps:
0 commit comments