Skip to content

Instantly share code, notes, and snippets.

@iocanel
Created January 16, 2020 14:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iocanel/8179fbb00c719bb3f29653ae0059b558 to your computer and use it in GitHub Desktop.
Save iocanel/8179fbb00c719bb3f29653ae0059b558 to your computer and use it in GitHub Desktop.
package io.snowdrop.github.issues;
import java.util.Arrays;
import java.util.Set;
import io.quarkus.arc.config.ConfigProperties;
@ConfigProperties(prefix = "github.bridge")
public class BridgeConfig {
public Set<String> users;
public String[] sourceRepos;
public String[] targetRepos;
public String terminalLabel;
@Override
public String toString() {
return "BridgeConfig [sourceRepos=" + Arrays.toString(sourceRepos) + ", targetRepos=" + Arrays.toString(targetRepos)
+ ", terminalLabel=" + terminalLabel + ", users=" + users + "]";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment