generated from jdno/template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep track of workflows and jobs (#89)
FlowCrafter now keeps track of generated workflows and their respective jobs in its configuration file inside the repository. This is the first step towards a more "hands off" approach, where FlowCrafter is configured once using `flowcrafter init` and `flowcrafter create` commands. This enables us to work on commands like `flowcrafter update`, which will automatically update all workflows to their latest version.
- Loading branch information
Showing
6 changed files
with
83 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,28 @@ | ||
# This file is managed by FlowCrafter. Manual changes will be overwritten | ||
# the next time you run FlowCrafter. | ||
--- | ||
library: | ||
github: | ||
instance: https://api.github.com/ | ||
owner: jdno | ||
repository: workflows | ||
workflows: | ||
- name: github | ||
jobs: | ||
- sync-labels | ||
- name: json | ||
jobs: | ||
- style | ||
- name: markdown | ||
jobs: | ||
- lint | ||
- style | ||
- name: rust | ||
jobs: | ||
- features | ||
- lint | ||
- style | ||
- test | ||
- name: yaml | ||
jobs: | ||
- lint | ||
- style |
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
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
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
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
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