Do scheduled workflows support using contexts?

workflows: version: 2 commit: jobs: - build: context: test-context itests_hourly: jobs: - build: context: test-context triggers: - schedule: cron: “0 5-17 * * *” filters: branches: only: - master The commit workflow works but not the scheduled. Thanks