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 f374088 commit 7d2bc2cCopy full SHA for 7d2bc2c
.github/workflows/tests.yml
@@ -20,6 +20,7 @@ on:
20
- '**/*.md' # Ignore changes to all .md files
21
schedule:
22
- cron: '0 6 * * 1'
23
+ workflow_dispatch:
24
25
env:
26
CACHE_NAME_PREFIX: v1
@@ -178,7 +179,7 @@ jobs:
178
179
const docker_build_config = yaml.load(docker_build_config_content);
180
181
let backends = [];
- if (event_name === 'schedule') {
182
+ if (event_name === 'schedule' || event_name === 'workflow_dispatch') {
183
const {data: examples} = await github.rest.repos.getContent({
184
owner: owner,
185
repo: repo,
0 commit comments