Webhook events for GitHub Discussions are now available as a public beta. Get started with the GitHub Discussions webhooks.
For questions or feedback, visit GitHub Discussions feedback.
Code Scanning alerts from all enabled tools are now shown in one consolidated list, so that you can easily prioritise across all alerts. You can view alerts from a specific tool by using the Tool filter, and the Rule and Tag filters will dynamically update based on your Tool selection.
Webhook events for GitHub Discussions are now available as a public beta. Get started with the GitHub Discussions webhooks.
For questions or feedback, visit GitHub Discussions feedback.
You can now use GITHUB_TOKEN to authenticate with the Packages Container registry in your Actions workflows. Say goodbye to all those PATs (delete them from your profile too!), and say hello to using the GITHUB_TOKEN in your workflows to read, create, update, and delete containers.
- name: Login to Packages Container registry
uses: docker/login-action@v1
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
- password: ${{ secrets.PAT }}
+ password: ${{ secrets.GITHUB_TOKEN }}
Write and read access of Actions to containers can be managed in the container settings.
Learn more about authenticating to Container registry with GitHub Actions