Skip to content

Commit

Permalink
Fix 'Missing LifeMonitor configuration file'
Browse files Browse the repository at this point in the history
  • Loading branch information
lifemonitor[bot] authored Oct 26, 2023
1 parent 7649e09 commit ec68f5a
Showing 1 changed file with 72 additions and 0 deletions.
72 changes: 72 additions & 0 deletions .lifemonitor.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# workflow name (override name defined on the RO-Crate metadata)
name: fair-crcc-img-convert

# worklow visibility
public: false

# Issue Checker Settings
issues:
# Enable/Disable issue checker
# The list of issue types can be found @ <LIFEMONITOR_API_URL>/workflows/issues
# (e.g., https://api.lifemonitor.eu/workflows/issues)
check: true
# csv of issues to check (all included by default)
# include: [repo_layout.MissingROCrateFile, experimental.OutdatedROCrateFile, lm.MissingLMConfigFile, lm.InvalidConfigFile, repo_layout.RepositoryNotInitialised, metadata.MissingWorkflowName, repo_layout.MissingWorkflowFile, repo_layout.MissingROCrateWorkflowFile]
# csv of issues to ignore (none ignored by default)
# exclude: [repo_layout.MissingROCrateFile, experimental.OutdatedROCrateFile, lm.MissingLMConfigFile, lm.InvalidConfigFile, repo_layout.RepositoryNotInitialised, metadata.MissingWorkflowName, repo_layout.MissingWorkflowFile, repo_layout.MissingROCrateWorkflowFile]


# Github Integration Settings
push:
branches:
# Define the list of branches to watch
# - name: feature/XXX # Wildcards can be used to specify branches (e.g., feature/*)
# enable_notifications: true # Enable to notify LifeMonitor and possibly also workflow registries
# # such as WorkflowHub (wfhub) and dev.WorkflowHub (wfhubdev).
# # Default: true
# lifemonitor_instance: "production" # Specify the LifeMonitor instance to notify.
# # Available options: "production" (the default) and "development"
# # The "development" instance is only for testing.
# # Default: "production"
# update_registries: [] # Workflow registries to be notified. Options are listed
# # by the endpoint `<lifemonitor_url>/registries`
# # Default: []
# # (e.g., https://api.lifemontor.eu/registries)
#
# An example:
#
# - name: "develop"
# enable_notifications: true
# lifemonitor_instance: development
# update_registries: []

# Monitor main. Notify only LifeMonitor (production instance) of changes.
- name: "main"
enable_notifications: true
lifemonitor_instance: production
update_registries: []


tags:
# Define the list of **tags** to watch.
# The same fields that are applied to 'branches' (above) are also valid for tags.
#
# Example:
# - name: "v*.*.*" # e.g,. v1.0.2
# enable_notifications: true
# lifemonitor_instance: development
# update_registries: []

# Recognize tags with names matching "v*.*.*" as new releases.
# Notify LifeMonitor (production instance) and the
# workflow registries [wfhub, wfhubdev]
- name: "v*.*.*"
enable_notifications: true
lifemonitor_instance: production
update_registries: [wfhub, wfhubdev]

# Also recognize the tag names matching "*.*.*". For the rest, same rules as above.
- name: "*.*.*"
enable_notifications: true
update_registries: [wfhub, wfhubdev]
lifemonitor_instance: production

0 comments on commit ec68f5a

Please sign in to comment.