Skip to content

Instantly share code, notes, and snippets.

@marcobeltempo
Last active April 14, 2020 14:32
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 marcobeltempo/cbb9fd8fd5efa79d0b64a2ac1eaf3555 to your computer and use it in GitHub Desktop.
Save marcobeltempo/cbb9fd8fd5efa79d0b64a2ac1eaf3555 to your computer and use it in GitHub Desktop.
GitHub Gmail Filters
<?xml version="1.0" encoding="UTF-8" ?>
<feed xmlns="http://www.w3.org/2005/Atom" xmlns:apps="http://schemas.google.com/apps/2006">
<title>Mail Filters</title>
<!-- Labels assigned tasks with "gh-assigned" -->
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="notifications@github.com" />
<apps:property name="hasTheWord" value="cc:assign@noreply.github.com OR cc:author@noreply.github.com" />
<apps:property name="label" value="GitHub/gh-assigned" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
<!-- Labels mentions with "gh-mentions" -->
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="notifications@github.com" />
<apps:property name="hasTheWord" value="cc:mention@noreply.github.com" />
<apps:property name="label" value="GitHub/gh-mentions" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
<!-- Labels pull request activity with "gh-pull-request" -->
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="from:(notifications@github.com) AND {&quot;Patch Links&quot; &quot;approved this pull request.&quot; &quot;requested changes on this pull request.&quot; &quot;commented on this pull request.&quot; &quot;pushed /d+ commit.&quot;}" />
<apps:property name="label" value="GitHub/gh-pull-request" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
<!-- Labels pull requests that require your review with "gh-review-requested" -->
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="notifications@github.com" />
<apps:property name="hasTheWord" value="{cc:(review_requested@noreply.github.com) &quot;requested your review on&quot;}" />
<apps:property name="label" value="GitHub/gh-review-requested" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="noreply@github.com" />
<apps:property name="label" value="GitHub" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
<entry>
<category term="filter"></category>
<title>Mail Filter</title>
<content></content>
<apps:property name="from" value="notifications@github.com" />
<apps:property name="hasTheWord" value="cc:security_alert@noreply.github.com" />
<apps:property name="label" value="GitHub" />
<apps:property name="sizeOperator" value="s_sl" />
<apps:property name="sizeUnit" value="s_smb" />
</entry>
</feed>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment