We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bfe4faa commit e2d41bdCopy full SHA for e2d41bd
github-oauth/src/main/java/com/googlesource/gerrit/plugins/github/oauth/OAuthProtocol.java
@@ -134,7 +134,10 @@ public static enum Scope {
134
WRITE_PUBLIC_KEY("write:public_key", "Read/write/list owned public keys"),
135
136
/** Fully manage public keys. */
137
- ADMIN_PUBLIC_KEY("admin:public_key", "Fully manage owned public keys");
+ ADMIN_PUBLIC_KEY("admin:public_key", "Fully manage owned public keys"),
138
+
139
+ /** Grants the ability to add and update GitHub Actions workflow files. */
140
+ WORKFLOW("workflow", "Manage actions workflow files.");
141
142
@Getter private final String value;
143
0 commit comments