Skip to content

Commit e2d41bd

Browse files
committed
Add Oauth workflow scope
Grants the ability to add and update GitHub Actions workflow files. Bug: Issue 14533 Change-Id: I7d8b937b46af92341a34843ed87e9ba987f228bf
1 parent bfe4faa commit e2d41bd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

github-oauth/src/main/java/com/googlesource/gerrit/plugins/github/oauth/OAuthProtocol.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,10 @@ public static enum Scope {
134134
WRITE_PUBLIC_KEY("write:public_key", "Read/write/list owned public keys"),
135135

136136
/** Fully manage public keys. */
137-
ADMIN_PUBLIC_KEY("admin:public_key", "Fully manage owned public keys");
137+
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.");
138141

139142
@Getter private final String value;
140143

0 commit comments

Comments
 (0)