Skip to content

GitHub Slack Integration Planned Maintenance

To improve the scale and reliability of the GitHub and Slack integration, we are moving it to a new data center. The move is scheduled for Saturday, March 14, 2020 at 4 PM (Pacific) and will take between 30-60 minutes.

During the move, slash commands (like /github subscribe), link previews (unfurls), and notifications will not be available in Slack. No other GitHub.com services will be impacted.

If we are unable to fully complete the move during this time, we will resume it on Sunday, March 15, 2020 at 4 PM (Pacific).

Thank you for your understanding as we work to improve the integration between GitHub and Slack.

GitHub CLI 0.6 was just released with various bug fixes, improvements, and support for four new commands:

  • gh repo clone – clone a repository locally
  • gh repo create – create a new repository
  • gh repo fork – create a fork of a repository
  • gh repo view – view a repository in the browser

View the release notes · Download GitHub CLI

Please note: GitHub CLI is in early stages of development. We’d love to hear your feedback.

See more

Starting April 6, 2020, Python 2 will no longer be offered on any hosted virtual environments. Python 2 was sunset on January 1, 2020 and is not being improved or taking security fixes.

If you're using setup-python, please update your workflows to use Python versions 3.x.

steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v1
  with:
    python-version: '3.x' # Version range or exact version of a Python version to use, using SemVer's version range syntax
    architecture: 'x64' # optional x64 or x86. Defaults to x64 if not specified
- run: python my_script.py

For the latest updates, be sure to subscribe to the announcement in the actions/virtual-environments repository.

See more