When editing a Markdown file through the web interface, selecting the Preview tab will now automatically scroll to the place in the preview that you were just editing. The scroll location is based on the position of your cursor before you selected the Preview tab.
GitHub Actions: Prevent GitHub Actions from creating and approving pull requests
To further reduce the risk of a user using Actions to merge a change into a protected branch that was not reviewed by another person, the organization setting to disallow Actions from approving pull requests, which was introduced in January 2022, has been extended to also limit Actions from creating pull requests.
The Allow GitHub Actions to create and approve pull requests setting can be managed by admins in organization settings under Actions > General > Workflow permissions.
GitHub Actions simplifies using secrets with reusable workflows with the secrets: inherit
keyword.
Previously when passing secrets to a reusable workflow, you had to pass each secret as a separate argument. Now you can simply pass the secrets: inherit
to the reusable workflow and the secrets will be inherited from the calling workflow.