Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

finds the issues that added any attachments before the given day by the user.

hasAttachmenMatching() 🔎

Search for issues that include attachments by their filenames or extensions.

Examples

Tip

issue in hasAttachmentMatching("query", "avc")

finds the issues that include attachments named “avc“

Tip

issue in hasAttachmentMatching("query", "*avc*")

finds the issues that include attachments whose names include “avc”.

Tip

issue in hasAttachmentMatching("query", "*avc*2022*")

finds the issues that include attachments whose names include both “avc” and “2022“ respectively.

Tip

issue in hasAttachmentMatching("query", "*.png")

finds the issues that end with “.png”.

Tip

issue in hasAttachmentMatching("query", "avc*")

finds the issues that start with “avc”.