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 51b0a1a commit 1801ae1Copy full SHA for 1801ae1
lib/node_modules/@stdlib/_tools/scripts/templates/workflow_test_published_package.yml.txt
@@ -47,8 +47,8 @@ jobs:
47
env:
48
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
49
50
- # Run workflow job if `publish` workflow run is successful or when the workflow is manually run:
51
- 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' }}
52
53
# Define the job's steps:
54
steps:
0 commit comments