Replies: 1 comment
-
| 
         As the trigger is different from Issues, we could have a separate query for it. Issue:   | 
  
Beta Was this translation helpful? Give feedback.
                  
                    0 replies
                  
                
            
  
    Sign up for free
    to join this conversation on GitHub.
    Already have an account?
    Sign in to comment
  
        
    
Uh oh!
There was an error while loading. Please reload this page.
-
Add a new lookup for commits to the
neomuttrepo.neo-botcould listen for#[0-9a-fA-F]{7,40}$The
#at the beginning would prevent false positives from words like 'defaced'.Output format:
Contents:
📝Commit📄++ number of lines added-+ number of lines removedThis GraphQL will search for a commit by its hash or tag.
(and get a lot of the info we need)
{ repository(owner: "neomutt", name: "neomutt") { object(expression: "20211029") { oid abbreviatedOid ... on Commit { signature { email signer { name login } state } authoredDate committedDate changedFiles url additions deletions messageHeadline author { name user { login } } } } } }Beta Was this translation helpful? Give feedback.
All reactions