Created
January 17, 2018 14:27
-
-
Save FranzBusch/8217b9bf56c169019a3311103fbe2ae2 to your computer and use it in GitHub Desktop.
Sixt CI Workflows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
workflows: | |
version: 2 | |
alpha-build: | |
jobs: | |
- alpha: | |
context: org-global | |
filters: | |
branches: | |
only: | |
- develop | |
pull-request: | |
jobs: | |
- unit_tests: | |
context: org-global | |
filters: | |
branches: | |
only: | |
- /feature.*/ | |
nightly: | |
triggers: | |
- schedule: | |
cron: "0 0 * * *" | |
filters: | |
branches: | |
only: | |
- develop | |
jobs: | |
- tests: | |
context: org-global |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment