File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -72,8 +72,6 @@ pub struct Keys {
72
72
#[ derive( Debug , Deserialize ) ]
73
73
pub struct Config {
74
74
pub keys : Keys ,
75
- #[ serde( default ) ]
76
- pub skip : HashSet < String > ,
77
75
}
78
76
79
77
pub struct InputData {
@@ -128,7 +126,6 @@ impl InputData {
128
126
github : std:: env:: var ( "GITHUB_API_TOKEN" ) . ok ( ) ,
129
127
secret : std:: env:: var ( "GITHUB_WEBHOOK_SECRET" ) . ok ( ) ,
130
128
} ,
131
- skip : HashSet :: default ( ) ,
132
129
}
133
130
} ;
134
131
@@ -167,7 +164,7 @@ impl InputData {
167
164
. cloned ( )
168
165
. filter ( |c| now. signed_duration_since ( c. time ) < Duration :: days ( 29 ) )
169
166
. filter_map ( |c| {
170
- if have. contains ( & c. sha ) || self . config . skip . contains ( & c . sha ) {
167
+ if have. contains ( & c. sha ) {
171
168
None
172
169
} else {
173
170
Some ( ( c, MissingReason :: Sha ) )
You can’t perform that action at this time.
0 commit comments