Skip to content

Search by @me

You can now create and share search queries that resolve to the current user by using the @me search syntax.

For example, navigating to https://github.com/search?q=is%3Aissue+state%3Aopen+assignee%3A%40me (when logged into GitHub) will return all the open issues that are assigned to you. You can also type assignee:@me is:issue state:open into any search field to return the same results.

Learn more about current user search on GitHub

We have changed the artifact download experience in GitHub Actions so it no longer adds an extra root directory to the downloaded archive.

Previously, if you uploaded the following files and folders as an artifact named `foo`, the downloaded archive would contain the following structure:

foo/
 |-- file1.txt
 |-- dir1/
 |    |-- dir1-file1.txt

Now, you will get an archive that only contains the files and folders you uploaded:

file1.txt
dir1/
|-- dir1-file1.txt
See more